(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
c17-nullptr-1.c
       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  }