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