blob: 5f5b4eeaad52410e5c26ccfa0e1fbd54a64eb658 [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;
20}
21