[flang] [unittests] Link to libMLIR in optimizer tests (#123476)
[llvm-project.git] / libcxx / test / std / containers / sequences / vector / vector.cons / default.recursive.pass.cpp
blob310f9ccfc9c6cba88a2bbe2673c3d51c67c0aed5
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <vector>
10 // class vector
11 // vector();
13 #include <vector>
15 #include "test_macros.h"
17 struct X
19 std::vector<X> q;
22 int main(int, char**)
25 return 0;