2016-04-19 20:13:55 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 10:56:40 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-04-19 20:13:55 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <utility>
|
2016-06-03 21:40:03 +00:00
|
|
|
// XFAIL: c++98, c++03
|
2016-04-19 20:13:55 +00:00
|
|
|
|
|
|
|
// #include <initializer_list>
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
std::initializer_list<int> x;
|
2017-10-14 15:52:38 +00:00
|
|
|
(void)x;
|
2016-04-19 20:13:55 +00:00
|
|
|
}
|
|
|
|
|