blob: 816a598d9a2371d98e0359704c987032b76e232d [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <memory>
// unique_ptr
// Test unique_ptr converting move assignment
#include <memory>
#include "test_macros.h"
struct A
{
A() {}
virtual ~A() {}
};
struct B : public A
{
};
// Can't assign from lvalue
int main()
{
std::unique_ptr<B> s;
std::unique_ptr<A> s2;
#if TEST_STD_VER >= 11
s2 = s; // expected-error {{no viable overloaded '='}}
#else
// NOTE: The move-semantic emulation creates an ambiguous overload set
// so that assignment from an lvalue does not compile
s2 = s; // expected-error {{use of overloaded operator '=' is ambiguous}}
#endif
}