]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.dg/cpp0x/constexpr-70001-4.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-70001-4.C
CommitLineData
928af3bf 1// PR c++/70001
dbd0ef6d
JM
2
3// This is still slow to compile, only run it once.
4// { dg-do compile { target c++14_only } }
928af3bf
JJ
5
6struct B
7{
8 int a;
9 constexpr B () : a (0) { }
10};
11
12struct A
13{
14 B b[1 << 19][1][1][1];
15} c;
This page took 2.996475 seconds and 5 git commands to generate.