Files
clang-p2996/clang/test/Modules/Inputs/odr_hash-Unresolved/module.modulemap
Richard Trieu 719757039f Test case for r321396
Any hashing for methods should be able to compile this test case without
emitting an error.  Since the class and method come from the same header from
each module, there should be no messages about ODR violations.

llvm-svn: 321924
2018-01-06 03:20:59 +00:00

22 lines
292 B
Plaintext

module Module1 {
module Sub1 {
umbrella "Sub1"
module * { export * }
}
module Sub2 {
umbrella "Sub2"
module * { export * }
}
}
module Module2 {
umbrella "Module2"
module * { export * }
}
module Other {
textual header "function.h"
textual header "class.h"
}