]> granicus.if.org Git - clang/commitdiff
Split the two invalid uses of the unqualified Foobar at line 3 to two lines
authorKaelyn Uhrain <rikka@google.com>
Tue, 13 Sep 2011 22:31:32 +0000 (22:31 +0000)
committerKaelyn Uhrain <rikka@google.com>
Tue, 13 Sep 2011 22:31:32 +0000 (22:31 +0000)
so that it is clearer which use triggered which error.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139653 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/missing-namespace-qualifier-typo-corrections.cpp

index fd0c976bdd78d24491e294d15aa8eb2c3f894305..85e3e7ed08fe66f92fb10082b0c5ac2adabf55b2 100644 (file)
@@ -1,8 +1,8 @@
 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-c++0x-extensions %s
 
 namespace fizbin { class Foobar; } // expected-note{{'fizbin::Foobar' declared here}}
-Foobar *my_bar = new Foobar; // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}} \
-                             // expected-error{{expected a type}}
+Foobar *my_bar  // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}}
+    = new Foobar;  // expected-error{{expected a type}}
 
 namespace barstool { int toFoobar() { return 1; } } // expected-note 3 {{'barstool::toFoobar' declared here}}
 int Double(int x) { return x + x; }