blob: 7e6697ff6e50853e230c6ba30690d033a61ba7a6 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <optional>
// #include <initializer_list>
#include <experimental/optional>
int main()
{
#if _LIBCPP_STD_VER > 11
using std::experimental::optional;
std::initializer_list<int> list;
#endif // _LIBCPP_STD_VER > 11
}