Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
2460b0c9414c9bbee036312b3d99f81dd232a6f3
/
.
/
clang
/
test
/
Parser
/
traditional_arg_scope.c
blob: 222de863fba03363c8c66bd0c1232ecf4ae5fa7a [
file
] [
log
] [
blame
]
Eli Friedman
2460b0c
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