1// { dg-do compile }
2// { dg-options "-O2 -fnon-call-exceptions -fno-guess-branch-probability" }
3
4#include <vector>
5
6void foo ()
7{
8  std::vector < std::vector< int > > (20000);
9}
10