Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
725d2be94f4df5b4f12715eeb43fa876573085e9
/
.
/
test
/
Parser
/
traditional_arg_scope.c
blob: 222de863fba03363c8c66bd0c1232ecf4ae5fa7a [
file
] [
log
] [
blame
]
Eli Friedman
3016575
2008-05-20 09:10:20 +0000
[
diff
] [
blame
]
1
// RUN: clang -fsyntax-only %s -verify
2
3
x
(
a
)
int
a
;
{
return
a
;}
4
y
(
b
)
int
b
;
{
return
a
;}
// expected-error {{use of undeclared identifier}}
5