blob: af8ca01370f0800064c90c11a498d90f4c4413b5 [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
//
//===----------------------------------------------------------------------===//
// Make sure that a std::vector containing move-only types can't be copied.
// UNSUPPORTED: c++03 && !stdlib=libc++
#include <vector>
#include "MoveOnly.h"
void f() {
std::vector<MoveOnly> v;
std::vector<MoveOnly> copy = v; // expected-error-re@* {{{{(no matching function for call to '__construct_at')|(call to deleted constructor of 'MoveOnly')}}}}
}