mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-23 14:30:12 +00:00
12 lines
211 B
C++
12 lines
211 B
C++
/* 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");
|
|
}
|