//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // UNSUPPORTED: libcpp-has-no-threads // // class future // future(const future&) = delete; #include #include "test_macros.h" int main() { #if TEST_STD_VER >= 11 { std::future f0; std::future f = f0; // expected-error {{call to deleted constructor of 'std::future'}} } { std::future f0; std::future f = f0; // expected-error {{call to deleted constructor of 'std::future'}} } { std::future f0; std::future f = f0; // expected-error {{call to deleted constructor of 'std::future'}} } #else { std::future f0; std::future f = f0; // expected-error {{calling a private constructor of class 'std::__1::future'}} } { std::future f0; std::future f = f0; // expected-error {{calling a private constructor of class 'std::__1::future'}} } { std::future f0; std::future f = f0; // expected-error {{calling a private constructor of class 'std::__1::future'}} } #endif }