targetC.cpp 171 B

12345678910111213141516
  1. #include "depG.h"
  2. #include "bar.h"
  3. #include "foo.h"
  4. #ifndef TEST_DEF
  5. #error Expected TEST_DEF definition
  6. #endif
  7. int main(int, char**)
  8. {
  9. DepG g;
  10. return g.foo();
  11. }