Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
Parser
/
if-scope-c90.c
blob: 53987dccbc37f9e9657fc9984aba72798da6f900 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify --std=c90 %s
int
f
(
int
z
)
{
if
(
z
>
(
int
)
sizeof
(
enum
{
a
,
b
}))
return
a
;
return
b
;
}