summaryrefslogtreecommitdiffstats
path: root/Tests/TryCompile/check_a_b.c
blob: 65535ac77524337afb962e0d976932364e8b96f4 (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(void)
{
  return 0;
}