xref: /llvm-project/libcxx/test/std/utilities/utility/synopsis.pass.cpp (revision 31cbe0f240f660f15602c96b787c58a26f17e179)
18743f8caSBen Craig //===----------------------------------------------------------------------===//
28743f8caSBen Craig //
357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
68743f8caSBen Craig //
78743f8caSBen Craig //===----------------------------------------------------------------------===//
88743f8caSBen Craig 
98743f8caSBen Craig // <utility>
10*31cbe0f2SLouis Dionne // XFAIL: c++03
118743f8caSBen Craig 
128743f8caSBen Craig // #include <initializer_list>
138743f8caSBen Craig 
148743f8caSBen Craig #include <utility>
158743f8caSBen Craig 
167fc6a556SMarshall Clow #include "test_macros.h"
177fc6a556SMarshall Clow 
main(int,char **)182df59c50SJF Bastien int main(int, char**)
198743f8caSBen Craig {
208743f8caSBen Craig     std::initializer_list<int> x;
21346bd6a2SBenjamin Kramer     (void)x;
222df59c50SJF Bastien 
232df59c50SJF Bastien   return 0;
248743f8caSBen Craig }
25