Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
defarg17.C
blob: c39a819c72328c367c6610b4b8487466f6b32daa [
file
] [
log
] [
blame
]
typedef
int
I
;
int
f
(
float
I
=
0.0
,
int
b
=
I
(
2
));
// { dg-error "parameter" }
int
g
(
int
b
=
I
(
2
),
float
I
=
0.0
);
struct
A
{
int
f
(
float
I
=
0.0
,
int
b
=
I
(
2
));
// { dg-error "parameter" }
int
g
(
int
b
=
I
(
2
),
float
I
=
0.0
);
};