Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
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
);
};