re PR c++/24103 (ICE in simple_cst_equal)

PR c++/24103
	* g++.dg/other/default1.C: New test.

From-SVN: r107889
This commit is contained in:
Volker Reichelt 2005-12-02 12:48:06 +00:00 committed by Volker Reichelt
parent 7767580e64
commit 631ba327ca
2 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-12-02 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/24103
* g++.dg/other/default1.C: New test.
2005-12-02 Richard Guenther <rguenther@suse.de>
* gcc.dg/tree-ssa/20031106-6.c: Remove XFAIL.

View File

@ -0,0 +1,22 @@
// PR c++/24103
// ICE in simple_cst_equal
// Origin: Alexander Stepanov <astepanov@softminecorp.com>
// { dg-do compile }
// { dg-options "" }
struct S
{
int i;
};
struct A
{
A(S = (S){0});
};
struct B
{
B(S = (S){0});
};
B::B(S) {}