You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
289 B
21 lines
289 B
4 months ago
|
module A {
|
||
|
module One { header "A_one.h" }
|
||
|
module Two { header "A_two.h" }
|
||
|
}
|
||
|
|
||
|
module B {
|
||
|
module One { header "B_one.h" }
|
||
|
module Two { header "B_two.h" }
|
||
|
}
|
||
|
|
||
|
module C {
|
||
|
module One {
|
||
|
header "C_one.h"
|
||
|
export A.*
|
||
|
}
|
||
|
module Two {
|
||
|
header "C_two.h"
|
||
|
export *
|
||
|
}
|
||
|
}
|