
already have, check whether the name from the module is actually newer than the existing declaration. If it isn't, we might (say) replace a visible declaration with an injected friend, and thus make it invisible (or lose a default argument or an array bound). llvm-svn: 228661
11 lines
305 B
Plaintext
11 lines
305 B
Plaintext
module A { header "a.h" export * }
|
|
module B { header "b.h" export * }
|
|
module C {
|
|
module C2 { header "c2.h" export * }
|
|
module C1 { header "c1.h" export * }
|
|
}
|
|
module X { header "x.h" export * }
|
|
module Y { header "y.h" export * }
|
|
module na { header "na.h" export * }
|
|
module nb { header "nb.h" export * }
|