summaryrefslogtreecommitdiffstats
path: root/test cases/common/115 subproject project arguments/exe.c
blob: e8f2271a3ac9e46d6cb3a571cd11820e2c52085a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef PROJECT_OPTION
#error
#endif

#ifndef PROJECT_OPTION_1
#error
#endif

#ifndef GLOBAL_ARGUMENT
#error
#endif

#ifdef SUBPROJECT_OPTION
#error
#endif

#ifdef OPTION_CPP
#error
#endif

#ifndef PROJECT_OPTION_C_CPP
#error
#endif

int main(void) {
    return 0;
}