Sign in
llvm
/
llvm-project
/
refs/heads/users/boomanaiden154/main.github-remove-call-to-llvm-project-tests-from-libclang-tests
/
.
/
clang
/
test
/
Parser
/
if-scope-c99.c
blob: 63f82e0f7aa76c68f945717f7da955fb87ce8d9a [
file
] [
log
] [
blame
] [
edit
]
// RUN: %clang_cc1 -fsyntax-only -verify -std=c99 %s
int
f
(
int
z
)
{
if
(
z
>
(
int
)
sizeof
(
enum
{
a
,
b
}))
return
a
;
return
b
;
// expected-error{{use of undeclared identifier}}
}