1 /* Test that in pre-C23 modes, nullptr is a normal identifier,
2 not a keyword. */
3 /* { dg-options "-std=c17 -pedantic-errors" } */
4
5 int nullptr;
6
7 void
8 f (int nullptr)
9 {
10 }