aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/21 target arg/prog2.cc
blob: e2ffe62ad97b9dd977313d500d9390fe995e4cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef CTHING
#error "Local C argument set in wrong target"
#endif

#ifdef CPPTHING
#error "Local CPP argument set in wrong target"
#endif

extern "C" int func();

int main(void) {
    return func();
}