blob: 196c6ec51fcf3f59bcdc5123dedbf862a0f4d009 (
plain)
1
2
3
4
5
6
7
8
|
// PR c++/113835
// { dg-timeout-factor 0.05 }
// { dg-do compile { target c++20_only } }
#include <vector>
const std::size_t N = 1'000'000;
std::vector<int> x(N);
int main() {}
|