llvm-project/clang/test/Parser/CompoundStmtScope.c
Bill Wendling eb2def66be Submitted by: Bill Wendling
- Converted to use the -parse-ast-check flag.

llvm-svn: 39681
2007-06-27 04:30:12 +00:00

9 lines
137 B
C

// RUN: clang -parse-ast-check %s
int foo() {
{
typedef float X;
}
X Y; // expected-error {{use of undeclared identifier}}
}