mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-07 08:34:59 +00:00
4b44e2ee8c
llvm-svn: 51316
8 lines
177 B
C
8 lines
177 B
C
// RUN: clang -fsyntax-only %s -verify
|
|
|
|
x(a) int a; {return a;}
|
|
y(b) int b; {return a;} // expected-error {{use of undeclared identifier}}
|
|
|
|
// PR2332
|
|
a(a)int a;{a=10;return a;}
|