diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-12-07 00:24:40 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-12-07 00:24:40 +0000 |
| commit | 60a6bbe60524094a8f17f2eb35bb048f0edc0e03 (patch) | |
| tree | 0d4774480389bf39fd59cc9964952ebe2524cee2 /clang/test | |
| parent | 13c7ec5c651735e99540eb992297556c97d3d24d (diff) | |
| download | bcm5719-llvm-60a6bbe60524094a8f17f2eb35bb048f0edc0e03.tar.gz bcm5719-llvm-60a6bbe60524094a8f17f2eb35bb048f0edc0e03.zip | |
Fix test.
llvm-svn: 288870
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/SemaCXX/cxx1z-copy-omission.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/cxx1z-copy-omission.cpp b/clang/test/SemaCXX/cxx1z-copy-omission.cpp index fbcff942e78..e2b8fd79617 100644 --- a/clang/test/SemaCXX/cxx1z-copy-omission.cpp +++ b/clang/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 |

