From: Richard Smith Date: Wed, 7 Dec 2016 00:24:40 +0000 (+0000) Subject: Fix test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c9cb64adf708964f40fb2378e2238045695cf9d;p=clang Fix test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@288870 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/cxx1z-copy-omission.cpp b/test/SemaCXX/cxx1z-copy-omission.cpp index fbcff942e7..e2b8fd7961 100644 --- a/test/SemaCXX/cxx1z-copy-omission.cpp +++ b/test/SemaCXX/cxx1z-copy-omission.cpp @@ -124,7 +124,7 @@ struct AsBase : Noncopyable { AsBase() : Noncopyable(make()) {} // expected-error {{deleted}} }; struct AsDelegating final { - AsDelegating(const AsDelegating &) = delete; + AsDelegating(const AsDelegating &) = delete; // expected-note {{deleted}} static AsDelegating make(int); // The base constructor version of this is problematic; the complete object