android_mt6572_jiabo/external/clang/test/Modules/Inputs/available-is-better/module.modulemap
2025-09-05 16:56:03 +08:00

17 lines
431 B
Text

// There is some order-dependence to how clang chooses modules, so make
// sure that both the first and last modules here are ones that would
// cause a test failure if they were picked.
module unavailable_before {
requires nonexistent_feature
header "available-is-better.h"
}
module available {
header "available-is-better.h"
}
module unavailable_after {
requires nonexistent_feature
header "available-is-better.h"
}