summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/undefined-in-preprocessor-conditional.slang
blob: 100468703fbbc9c7a04b5b57b471082962b597b3 (plain)
1
2
3
4
5
6
7
8
9
10
//DIAGNOSTIC_TEST(smoke):SIMPLE:

// Use an undefined identifier in a preprocessor conditional

#define FOO  1
#define BORT 1

#if FOO && BART
#error Should not get here
#endif