summaryrefslogtreecommitdiff
path: root/Tests/TryCompile/check_a_b.c
blob: 05fba0f828c1dbefb9590140a6992bd98c665a7a (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef DEF_A
#  error DEF_A not defined
#endif
#ifndef DEF_B
#  error DEF_B not defined
#endif
int main()
{
  return 0;
}