10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
|
// Test that crates and directory modules can contain code
|
||
|
|
||
|
mod a = "companionmod-src" {
|
||
|
mod b {
|
||
|
mod x;
|
||
|
}
|
||
|
mod c = "d" {
|
||
|
mod x;
|
||
|
}
|
||
|
}
|