1 //===----------------------------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is dual licensed under the MIT and the University of Illinois Open 6 // Source Licenses. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 // <utility> 11 12 // template<class T, T N> 13 // using make_integer_sequence = integer_sequence<T, 0, 1, ..., N-1>; 14 15 // UNSUPPORTED: c++98, c++03, c++11 16 17 // This test hangs during recursive template instantiation with libstdc++ 18 // UNSUPPORTED: libstdc++ 19 20 #define _LIBCPP_TESTING_FALLBACK_MAKE_INTEGER_SEQUENCE 21 #include "make_integer_seq.fail.cpp" 22