]> granicus.if.org Git - clang/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76628 91177308-0d34-0410-b5e6-96231b3b80d8

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

index d888a6d93633098feb1af48d81b7a17e6741f8d7..fa873d8af329fe1099798edf44c1d18cf57a8628 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
+}