2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / expr / crash-1.C
blobd8d689fd67b0638bd6ab4e8d2e4fbf8181960db5
1 // C++ PR/10476
2 // Origin: larsbj@gullik.net and bangerth@dealii.org
5 struct X {
6   X();
7   X(const X& __str);
8 };
9 X const bar();
10 void foo()
12   X y;
13   (true ? y : bar());