From: Chris Lattner Date: Sun, 6 Dec 2009 19:11:41 +0000 (+0000) Subject: this is really about both PR's, 4452 is "don't crash", 4451 is "recover nicely". X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93fc8fbc82c9d083d7e106d0fc7f21f9678cbeb6;p=clang this is really about both PR's, 4452 is "don't crash", 4451 is "recover nicely". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90714 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/nested-name-spec.cpp b/test/SemaCXX/nested-name-spec.cpp index b0a27cbdf5..6a51261e26 100644 --- a/test/SemaCXX/nested-name-spec.cpp +++ b/test/SemaCXX/nested-name-spec.cpp @@ -186,7 +186,7 @@ class foo { }; -// PR4451 +// PR4452 / PR4451 foo a2; // expected-error {{unexpected ':' in nested name specifier}} somens::a a3 = a2; // expected-error {{cannot initialize 'a3' with an lvalue of type 'foo'}}