//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // This is for bugs 18853 and 19118 #if __cplusplus >= 201103L #include #include struct X { X() {} template X(T); void operator()() {} }; int main() { X x; std::function f(x); } #else int main () {} #endif