]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/initlist16.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist16.C
1 // { dg-do run { target c++11 } }
2
3 extern "C" void abort();
4
5 void f(int i) { if (i != 42) abort(); }
6
7 int main()
8 {
9 f({42});
10 return {0};
11 }
This page took 0.039321 seconds and 5 git commands to generate.