blob: f65ebd99d9a0b36c4667cb041a2d3a7289834418 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// template<class E> class initializer_list;
// initializer_list();
#include <initializer_list>
#include <cassert>
struct A {};
int main()
{
std::initializer_list<A> il;
assert(il.size() == 0);
}