blob: d6a4730632ca43ad840a9eb3f048eaca8c43096c [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001// RUN: clang -parse-ast-check %s
2
3int foo() {
4 {
5 typedef float X;
6 }
7 X Y; // expected-error {{use of undeclared identifier}}
8}