repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
other
/
default1.C
blob
a6d9681856371bedccfe1472ab31eeb93e06f587
1
// PR c++/24103
2
// ICE in simple_cst_equal
3
// Origin: Alexander Stepanov <astepanov@softminecorp.com>
4
// { dg-do compile }
5
// { dg-options "" }
6
7
struct S
8
{
9
int i;
10
};
11
12
struct A
13
{
14
A(S = (S){0});
15
};
16
17
struct B
18
{
19
B(S = (S){0});
20
};
21
22
B::B(S) {}