Files
libcxx/test/std/utilities/utility/synopsis.pass.cpp
Ben Craig 9c6f00d616 XFAILing new test on C++03
initializer_list doesn't exist in C++03.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@266820 91177308-0d34-0410-b5e6-96231b3b80d8
2016-04-19 21:07:30 +00:00

22 lines
489 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <utility>
// XFAIL: c++03
// #include <initializer_list>
#include <utility>
int main()
{
std::initializer_list<int> x;
}