//===----------------------------------------------------------------------===// // // 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 auto_ptr // { // public: // typedef X element_type; // ... // }; // REQUIRES: c++98 || c++03 || c++11 || c++14 #include #include template void test() { static_assert((std::is_same::element_type, T>::value), ""); std::auto_ptr p; ((void)p); } int main() { test(); test(); test(); }