blob: 2b4a5a9e2cd76205d1955e5a0cf79771ac415d4c [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <vector>
// Test that vector produces a decent diagnostic for user types that explicitly
// delete their move constructor. Such types don't meet the Cpp17CopyInsertible
// requirements.
#include <vector>
template <int>
class BadUserNoCookie {
public:
BadUserNoCookie() { }
BadUserNoCookie(BadUserNoCookie&&) = delete;
BadUserNoCookie& operator=(BadUserNoCookie&&) = delete;
BadUserNoCookie(const BadUserNoCookie&) = default;
BadUserNoCookie& operator=(const BadUserNoCookie&) = default;
};
int main() {
// expected-error@memory:* 2 {{"The specified type does not meet the requirements of Cpp17MoveInsertable"}}
{
std::vector<BadUserNoCookie<1> > x;
x.emplace_back();
}
{
std::vector<BadUserNoCookie<2>> x;
BadUserNoCookie<2> c;
x.push_back(c);
}
return 0;
}