//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template class tuple; // template // explicit tuple(UTypes&&... u); /* This is testing an extension whereby only Types having an explicit conversion from UTypes are bound by the explicit tuple constructor. */ #include #include class MoveOnly { MoveOnly(const MoveOnly&); MoveOnly& operator=(const MoveOnly&); int data_; public: explicit MoveOnly(int data = 1) : data_(data) {} MoveOnly(MoveOnly&& x) : data_(x.data_) {x.data_ = 0;} MoveOnly& operator=(MoveOnly&& x) {data_ = x.data_; x.data_ = 0; return *this;} int get() const {return data_;} bool operator==(const MoveOnly& x) const {return data_ == x.data_;} bool operator< (const MoveOnly& x) const {return data_ < x.data_;} }; int main() { { std::tuple t = 1; } }