blob: 4f991031d0c3a598f6ce41087cc015f994e8b42c [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Chris Lattner19f4440f2006-10-25 03:14:54 +00002
Mike Stump753d1202009-07-22 00:43:08 +00003void foo() {
Chris Lattner19f4440f2006-10-25 03:14:54 +00004 {
5 typedef float X;
6 }
Bill Wendlingeb2def62007-06-27 04:30:12 +00007 X Y; // expected-error {{use of undeclared identifier}}
Chris Lattner19f4440f2006-10-25 03:14:54 +00008}