//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // vector v; // an extension #include #include int main() { #ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS std::vector v = {1, 2, 3}; #endif }