mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:51:00 +08:00
fix markup
From-SVN: r142401
This commit is contained in:
parent
f6ab27bb6d
commit
6efe1abf4c
@ -8,7 +8,7 @@ struct b
|
||||
b() = default;
|
||||
~b() = default;
|
||||
b& operator=(const b&) = delete;
|
||||
b(const b&) = delete;
|
||||
b(const b&) = delete; // { dg-error "deleted" }
|
||||
|
||||
b(bool _t): t (_t) { }
|
||||
};
|
||||
@ -19,7 +19,7 @@ int main()
|
||||
b tst1 = { false };
|
||||
|
||||
// copy initialization.
|
||||
b tst2 = false; // { dg-error "deleted" }
|
||||
b tst2 = false; // { dg-error "used here" }
|
||||
|
||||
// direct list initialization
|
||||
b tst3 { false };
|
||||
|
Loading…
x
Reference in New Issue
Block a user