xref: /llvm-project/clang/test/Modules/Inputs/available-is-better/module.modulemap (revision 8b7c0398b6a30d40de29e6f982a766c5016fc544)
1// There is some order-dependence to how clang chooses modules, so make
2// sure that both the first and last modules here are ones that would
3// cause a test failure if they were picked.
4
5module unavailable_before {
6  requires nonexistent_feature
7  header "available-is-better.h"
8}
9
10module available {
11  header "available-is-better.h"
12}
13
14module unavailable_after {
15  requires nonexistent_feature
16  header "available-is-better.h"
17}
18