File tree 2 files changed +21
-0
lines changed
test/std/utilities/utility
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ template<class T, class U=T>
178
178
#include < __config>
179
179
#include < __tuple>
180
180
#include < type_traits>
181
+ #include < initializer_list>
181
182
182
183
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
183
184
#pragma GCC system_header
Original file line number Diff line number Diff line change
1
+ // ===----------------------------------------------------------------------===//
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
+
16
+ int main ()
17
+ {
18
+ std::initializer_list<int > x;
19
+ }
20
+
You can’t perform that action at this time.
0 commit comments