CompoundStmtScope.c 148 B

12345678
  1. // RUN: %clang_cc1 -fsyntax-only -verify %s
  2. void foo() {
  3. {
  4. typedef float X;
  5. }
  6. X Y; // expected-error {{use of undeclared identifier}}
  7. }