mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
11 lines
194 B
NASM
11 lines
194 B
NASM
use module::Machine;
|
|
|
|
mod module {
|
|
use super::other_module::submodule::MyMachine as Machine;
|
|
}
|
|
|
|
mod other_module {
|
|
mod submodule {
|
|
use super::super::Machine as MyMachine;
|
|
}
|
|
} |