blob: 8d2e0a7e713822b6f1b9ce618c716d151ce110ca [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// template<class E> class initializer_list;
// initializer_list();
#include <initializer_list>
#include <cassert>
#include "test_macros.h"
struct A {};
int main(int, char**)
{
std::initializer_list<A> il;
assert(il.size() == 0);
#if TEST_STD_VER > 11
constexpr std::initializer_list<A> il2;
static_assert(il2.size() == 0, "");
#endif // TEST_STD_VER > 11
return 0;
}