aboutsummaryrefslogtreecommitdiff
path: root/test cases/23 global arg/prog.cc
blob: b881645d99a4c1b82c054a250770bcb84fa69ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifdef MYTHING
#error "Wrong global argument set"
#endif

#ifndef MYCXXTHING
#error "Global argument not set"
#endif

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