//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // XFAIL: c++98, c++03, c++11, c++14 // class function // template function(allocator_arg_t, const A&, const function&); // // This signature was removed in C++17 #include #include #include "test_macros.h" int main() { typedef std::function F; F f1; F f2(std::allocator_arg, std::allocator(), f1); }