repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Parser
/
if-scope-c90.c
blob
61119eacc9eef416904abedd463da642f9384d52
1
// RUN: %clang_cc1 -fsyntax-only -verify -std=c90 %s
2
// expected-no-diagnostics
3
4
int
f
(
int
z
)
5
{
6
if
(
z
> (
int
)
sizeof
(
enum
{
a
,
b
}))
7
return
a
;
8
return
b
;
9
}