fix markup

From-SVN: r142401
This commit is contained in:
Jason Merrill 2008-12-03 12:49:15 -05:00
parent f6ab27bb6d
commit 6efe1abf4c

View File

@ -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 };