Sign in
llvm
/
llvm-archive
/
47f46514d69ad808308539dc6c69b907868fcf8a
/
.
/
llvm-gcc-4.2
/
gcc
/
testsuite
/
g++.dg
/
other
/
default1.C
blob: a6d9681856371bedccfe1472ab31eeb93e06f587 [
file
] [
log
] [
blame
]
// 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
)
{}