18 lines · plain
1// There is some order-dependence to how clang chooses modules, so make2// sure that both the first and last modules here are ones that would3// cause a test failure if they were picked.4 5module unavailable_before {6 requires nonexistent_feature7 header "available-is-better.h"8}9 10module available {11 header "available-is-better.h"12}13 14module unavailable_after {15 requires nonexistent_feature16 header "available-is-better.h"17}18