Skip to content

Commit 0c9cb64

Browse files
committed
Fix test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@288870 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent f2750c8 commit 0c9cb64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/SemaCXX/cxx1z-copy-omission.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ struct AsBase : Noncopyable {
124124
AsBase() : Noncopyable(make()) {} // expected-error {{deleted}}
125125
};
126126
struct AsDelegating final {
127-
AsDelegating(const AsDelegating &) = delete;
127+
AsDelegating(const AsDelegating &) = delete; // expected-note {{deleted}}
128128
static AsDelegating make(int);
129129

130130
// The base constructor version of this is problematic; the complete object

0 commit comments

Comments
 (0)