Commit 1ecaf589 by Jonathan Wakely Committed by Jonathan Wakely

Fix errors in new test

	* testsuite/23_containers/vector/cons/89164_c++17.cc: Fix errors.

From-SVN: r275204
parent 875bdbe2
2019-08-30 Jonathan Wakely <jwakely@redhat.com>
* testsuite/23_containers/vector/cons/89164_c++17.cc: Fix errors.
2019-08-30 Uros Bizjak <ubizjak@gmail.com> 2019-08-30 Uros Bizjak <ubizjak@gmail.com>
* config/abi/post/alpha-linux-gnu/baseline_symbols.txt: Update. * config/abi/post/alpha-linux-gnu/baseline_symbols.txt: Update.
......
...@@ -22,6 +22,12 @@ ...@@ -22,6 +22,12 @@
// PR libstdc++/89164 // PR libstdc++/89164
struct X
{
X() = default;
X(const X&) = delete;
};
void test01() void test01()
{ {
X x[1]; X x[1];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment