mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 22:16:06 +00:00
9 lines
137 B
C
9 lines
137 B
C
// RUN: clang -parse-ast-check %s
|
|
|
|
int foo() {
|
|
{
|
|
typedef float X;
|
|
}
|
|
X Y; // expected-error {{use of undeclared identifier}}
|
|
}
|