1fff5ec03SEric Fiselier //===----------------------------------------------------------------------===//
2fff5ec03SEric Fiselier //
357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6fff5ec03SEric Fiselier //
7fff5ec03SEric Fiselier //===----------------------------------------------------------------------===//
8fff5ec03SEric Fiselier 
9fff5ec03SEric Fiselier // <utility>
10fff5ec03SEric Fiselier 
11fff5ec03SEric Fiselier // template<class T, T N>
12fff5ec03SEric Fiselier //   using make_integer_sequence = integer_sequence<T, 0, 1, ..., N-1>;
13fff5ec03SEric Fiselier 
14*31cbe0f2SLouis Dionne // UNSUPPORTED: c++03, c++11
15fff5ec03SEric Fiselier 
16fff5ec03SEric Fiselier #define _LIBCPP_TESTING_FALLBACK_MAKE_INTEGER_SEQUENCE
17fff5ec03SEric Fiselier #include "make_integer_seq.pass.cpp"
187fc6a556SMarshall Clow 
197fc6a556SMarshall Clow #include "test_macros.h"
20