Home | History | Annotate | Line # | Download | only in llvm
module-test.cpp revision 1.1.2.2
      1  1.1.2.2  cjep // Test that NDEBUG works
      2  1.1.2.2  cjep #undef NDEBUG
      3  1.1.2.2  cjep #include <cassert>
      4  1.1.2.2  cjep #define NDEBUG
      5  1.1.2.2  cjep #include <cassert>
      6  1.1.2.2  cjep int
      7  1.1.2.2  cjep main()
      8  1.1.2.2  cjep {
      9  1.1.2.2  cjep 	assert(this code is not compiled);
     10  1.1.2.2  cjep }
     11  1.1.2.2  cjep 
     12  1.1.2.2  cjep #ifndef _LIBCPP_VERSION
     13  1.1.2.2  cjep #error "Modules currently requires libc++"
     14  1.1.2.2  cjep #endif
     15