Fix errors in new test

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

From-SVN: r275204
This commit is contained in:
Jonathan Wakely 2019-08-30 17:25:20 +01:00 committed by Jonathan Wakely
parent 875bdbe2f6
commit 1ecaf589db
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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>
* config/abi/post/alpha-linux-gnu/baseline_symbols.txt: Update.

View File

@ -22,6 +22,12 @@
// PR libstdc++/89164
struct X
{
X() = default;
X(const X&) = delete;
};
void test01()
{
X x[1];