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

14 lines
175 B
C++
Raw Normal View History

#ifdef CTHING
#error "Wrong local argument set"
#endif
2013-06-03 03:31:10 +08:00
#ifndef CPPTHING
#error "Local argument not set"
#endif
extern "C" int func();
2019-11-19 04:21:37 +08:00
int main(void) {
return func();
}