diff options
Diffstat (limited to 'clang/test/SemaCXX/constructor.cpp')
-rw-r--r-- | clang/test/SemaCXX/constructor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/constructor.cpp b/clang/test/SemaCXX/constructor.cpp index 1aedb29c4e0..fc398e28ba4 100644 --- a/clang/test/SemaCXX/constructor.cpp +++ b/clang/test/SemaCXX/constructor.cpp @@ -5,7 +5,7 @@ typedef int INT; class Foo { Foo(); (Foo)(float) { } - explicit Foo(int); // expected-error{{previous declaration is here}} + explicit Foo(int); // expected-note {{previous declaration is here}} Foo(const Foo&); ((Foo))(INT); // expected-error{{cannot be redeclared}} |