//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // unique_ptr // template // basic_ostream& // operator<<(basic_ostream& os, const unique_ptr& p); // -?- Remarks: This function shall not participate in overload resolution unless os << p.get() is a valid expression. #include #include #include class A {}; int main() { std::unique_ptr p(new A); std::ostringstream os; os << p; }