blob: 900be2a3137ec18a56d3b9a60fad779028ae99b0 [file] [log] [blame]
Ben Craigd59d4162016-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>
Ben Craig9c6f00d2016-04-19 21:07:30 +000011// XFAIL: c++03
Ben Craigd59d4162016-04-19 20:13:55 +000012
13// #include <initializer_list>
14
15#include <utility>
16
17int main()
18{
19 std::initializer_list<int> x;
20}
21