aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c17-nullptr-1.c
blob: 92e43b9df236fc0dc2839a5afe2bc01ea224e0b2 (plain)
1
2
3
4
5
6
7
8
9
10
/* Test that in pre-C23 modes, nullptr is a normal identifier,
   not a keyword.  */
/* { dg-options "-std=c17 -pedantic-errors" } */

int nullptr;

void
f (int nullptr)
{
}