Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
878520b6413663a13b1b56c7e3f256b1ecbb8db4
/
.
/
test
/
Parser
/
if-scope-c90.c
blob: 1623eb000938354ec193d58b52ff341728220254 [
file
] [
log
] [
blame
]
// RUN: clang -parse-ast -verify --std=c90 %s
int
f
(
int
z
)
{
if
(
z
>
sizeof
(
enum
{
a
,
b
}))
return
a
;
return
b
;
}