Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
crash2.C
blob: 3d62d04eb6f4cff98101d690efadd991a1d11bb9 [
file
] [
log
] [
blame
]
// { dg-do assemble }
struct
A
{
int
rep
;
static
const
A a
(
0
);
// { dg-error "" } initialization
static
const
A b
=
3
;
// { dg-error "" } initialization
static
const
A
&
c
=
2
;
// { dg-error "" } initialization
A
(
int
x
)
:
rep
(
x
)
{}
};