diff options
Diffstat (limited to 'test/std/utilities/utility/synopsis.pass.cpp')
-rw-r--r-- | test/std/utilities/utility/synopsis.pass.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/std/utilities/utility/synopsis.pass.cpp b/test/std/utilities/utility/synopsis.pass.cpp new file mode 100644 index 000000000000..5f5b4eeaad52 --- /dev/null +++ b/test/std/utilities/utility/synopsis.pass.cpp @@ -0,0 +1,21 @@ +//===----------------------------------------------------------------------===// +// +// 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++98, c++03 + +// #include <initializer_list> + +#include <utility> + +int main() +{ + std::initializer_list<int> x; +} + |