diff options
Diffstat (limited to 'clang/test/SemaCXX/nested-name-spec.cpp')
-rw-r--r-- | clang/test/SemaCXX/nested-name-spec.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/SemaCXX/nested-name-spec.cpp b/clang/test/SemaCXX/nested-name-spec.cpp index 855af93c238..df4f1b269d7 100644 --- a/clang/test/SemaCXX/nested-name-spec.cpp +++ b/clang/test/SemaCXX/nested-name-spec.cpp @@ -167,9 +167,7 @@ void N::f() { } // okay struct Y; // expected-note{{forward declaration of 'Y'}} Y::foo y; // expected-error{{incomplete type 'Y' named in nested name specifier}} -X::X() : a(5) { } // expected-error{{use of undeclared identifier 'X'}} \ - // expected-error{{C++ requires a type specifier for all declarations}} \ - // expected-error{{only constructors take base initializers}} +X::X() : a(5) { } // expected-error{{use of undeclared identifier 'X'}} struct foo_S { static bool value; |