cxxonly.cxx 289 B

123456789101112131415161718
  1. #include "libcxx1.h"
  2. #include "libcxx2.h"
  3. #include <stdio.h>
  4. int main()
  5. {
  6. if (LibCxx1Class::Method() != 2.0) {
  7. printf("Problem with libcxx1\n");
  8. return 1;
  9. }
  10. #ifdef TEST_FLAG_3
  11. return 0;
  12. #else
  13. printf("Problem with libcxx2.h include dir probably!\n");
  14. return 1;
  15. #endif
  16. }