From: Kaelyn Uhrain Date: Tue, 13 Sep 2011 22:31:32 +0000 (+0000) Subject: Split the two invalid uses of the unqualified Foobar at line 3 to two lines X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d35aa041b8845545e078b69492d460640166f5b;p=clang Split the two invalid uses of the unqualified Foobar at line 3 to two lines 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 --- diff --git a/test/SemaCXX/missing-namespace-qualifier-typo-corrections.cpp b/test/SemaCXX/missing-namespace-qualifier-typo-corrections.cpp index fd0c976bdd..85e3e7ed08 100644 --- a/test/SemaCXX/missing-namespace-qualifier-typo-corrections.cpp +++ b/test/SemaCXX/missing-namespace-qualifier-typo-corrections.cpp @@ -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; }