allwinner_a64/android/external/clang/test/Parser/CompoundStmtScope.c
2018-08-08 16:14:42 +08:00

8 lines
148 B
C

// RUN: %clang_cc1 -fsyntax-only -verify %s
void foo() {
{
typedef float X;
}
X Y; // expected-error {{use of undeclared identifier}}
}