1 /* Test for constant expressions: details of what is a null pointer
4 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
5 /* { dg-do compile } */
6 /* { dg-options "-std=iso9899:1990" } */
7 /* Note: not using -pedantic since the -std option alone should be enough
8 to give the correct behavior to conforming programs. If -pedantic is
9 needed to make (say) (0, 0) not be a constant expression, this is a
25 /* Assertion that n is a null pointer constant: so the conditional expression
26 has type 'int *' instead of 'void *'.
28 #define ASSERT_NPC(n) (b = *(1 ? a : (n)))
29 /* Assertion that n is not a null pointer constant: so the conditional
30 expressions has type 'void *' instead of 'int *'.
32 #define ASSERT_NOT_NPC(n) (c = (1 ? a : (n)))
38 ASSERT_NPC ((void *)0);
39 ASSERT_NOT_NPC ((void *)(void *)0); /* { dg-bogus "incompatible" "bogus null pointer constant" } */
40 ASSERT_NOT_NPC ((void *)(char *)0); /* { dg-bogus "incompatible" "bogus null pointer constant" } */
41 ASSERT_NOT_NPC ((void *)(0, ZERO
)); /* { dg-bogus "incompatible" "bogus null pointer constant" } */
42 ASSERT_NOT_NPC ((void *)(&"Foobar"[0] - &"Foobar"[0])); /* { dg-bogus "incompatible" "bogus null pointer constant" } */
43 /* This last one is a null pointer constant in C99 only. */
44 ASSERT_NOT_NPC ((void *)(1 ? ZERO
: (0, ZERO
))); /* { dg-bogus "incompatible" "bogus null pointer constant" } */