aboutsummaryrefslogtreecommitdiff
path: root/test cases/24 target arg/prog.cc
blob: cc36ae07943ab62c5c5596773cb88955b29f8117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef CTHING
#error "Wrong local argument set"
#endif

#ifndef CXXTHING
#error "Local argument not set"
#endif

extern "C" int func();

int main(int argc, char **argv) {
    return func();
}