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 #define _LIBCPP_TESTING_FALLBACK_MAKE_INTEGER_SEQUENCE 18 #include "make_integer_seq.pass.cpp" 19