blob: 009b65cbbe53a1bd899c98c664bb75889d96924a [file] [log] [blame]
Ben Craig8743f8c2016-04-19 20:13:55 +00001//===----------------------------------------------------------------------===//
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>
Asiri Rathnayake981986c2016-06-03 21:40:03 +000011// XFAIL: c++98, c++03
Ben Craig8743f8c2016-04-19 20:13:55 +000012
13// #include <initializer_list>
14
15#include <utility>
16
17int main()
18{
19 std::initializer_list<int> x;
Benjamin Kramer346bd6a2017-10-14 15:52:38 +000020 (void)x;
Ben Craig8743f8c2016-04-19 20:13:55 +000021}
22