Sign in
llvm
/
llvm-project
/
clang
/
3f3c50c68dd03908c44d56e3fe88e28e30202dc4
/
.
/
test
/
Sema
/
undefined-internal-typeof-c23.c
blob: 837c36d4910a7da9e6fb9a5550bc11ca7c025dcf [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c23 -pedantic-errors
// expected-no-diagnostics
static
int
f
(
void
);
int
main
(
void
)
{
typeof
(&
f
)
x
;
}