blob: edb45cf610529de5541964a4192fb2f9cd9ed537 [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>
11
12// #include <initializer_list>
13
14#include <utility>
15
16int main()
17{
18 std::initializer_list<int> x;
19}
20