c: Implement C23 nullptr (N3042)
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-nullptr-1.c
blobc4faedc2c9180686724c1411ef54dfedd5ef6541
1 /* Test that in pre-C23 modes, nullptr is a normal identifier,
2 not a keyword. */
3 /* { dg-options "-std=c11 -pedantic-errors" } */
5 int nullptr;
7 void
8 f (int nullptr)