1
0
mirror of https://github.com/byteworksinc/ORCA-C.git synced 2025-03-13 19:35:46 +00:00
2017-10-21 18:40:19 -05:00

14 lines
451 B
C++

/* Special Conformance Test 21.1.0.1: Verification of assert, ndebug macros */
/* */
/* The tester should verify that the program halts with the error message: */
/* "Assertion failed: file spc21.1.0.1.cc, line 14" */
#undef NDEBUG
#include <assert.h>
main ()
{
assert (0);
printf ("Failed Special Conformance Test 21.1.0.1\n");
}