/* Test nullptr_t from . */ /* { dg-do compile } */ /* { dg-options "-std=c23 -pedantic-errors" } */ #include void f(nullptr_t); _Static_assert (sizeof (nullptr_t) == sizeof (char *), "sizeof (nullptr_t)"); _Static_assert (_Alignof (nullptr_t) == _Alignof (char *), "_Alignof (nullptr_t)");