mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 18:31:43 +00:00
14 lines
451 B
C++
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");
|
|
}
|