aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/CompoundStmtScope.c
blob: 90e3d24a32f5c938b915fbb51d7ff1e20a8fc0c1 (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: clang-cc -fsyntax-only -verify %s

void foo() {
  {
    typedef float X;
  }
  X Y;  // expected-error {{use of undeclared identifier}}
}