13 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify -std=c17 -ffreestanding -Wc2x-compat %s2 3#include <stddef.h>4 5int nullptr; // expected-warning {{'nullptr' is a keyword in C23}}6 7nullptr_t val; // expected-error {{unknown type name 'nullptr_t'}}8 9void foo(void *);10void bar() { foo(__nullptr); } // Test that it converts properly to an arbitrary pointer type without warning11_Static_assert(__nullptr == 0, "value of __nullptr"); // Test that its value matches that of NULL12_Static_assert(_Generic(__typeof(__nullptr), int : 0, void * : 0, default : 1), "type of __nullptr"); // Test that it's type is not the same as what NULL would generally have.13