meson/test cases/common/24 target arg/prog.cc

14 lines
192 B
C++
Raw Normal View History

#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();
}