Prep for new warning.
authorMike Stump <mrs@apple.com>
Tue, 21 Jul 2009 19:03:43 +0000 (19:03 +0000)
committerMike Stump <mrs@apple.com>
Tue, 21 Jul 2009 19:03:43 +0000 (19:03 +0000)
llvm-svn: 76628

clang/test/CXX/class/class.local/p3.cpp

index d888a6d..fa873d8 100644 (file)
@@ -24,7 +24,10 @@ void f2() {
 void f3(int a) { // expected-note{{'a' declared here}}
   struct X {
     struct Y {
-      int f() { return a; } // expected-error{{reference to local variable 'a' declared in enclosed function 'f3'}}
+      int f() {
+        return a; // expected-error{{reference to local variable 'a' declared in enclosed function 'f3'}}
+        return 1;
+      }
     };
   };
-}
\ No newline at end of file
+}