ORCA-C/Tests/Conformance/C21.1.0.2.CC

1 line
211 B
Plaintext
Raw Normal View History

/* Conformance Test 21.1.0.2: Verification of assert, ndebug macros */ #include <assert.h> #define NDEBUG 1 main () { int i = 7; assert (i == 7); printf ("Passed Conformance Test 21.1.0.2\n"); }