Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
defarg2.C
blob: cc03cebc19135f6b81f9c0dcad87a08579c4166a [
file
] [
log
] [
blame
]
// { dg-do run }
// Test that default args don't mess up pmf type comparisons.
// Contributed by Jason Merrill <jason@cygnus.com>.
struct
A
{
void
f
(
int
=
0
)
{
}
};
int
main
()
{
void
(
A
::*
p
)(
int
)
=
0
;
p
=
&
A
::
f
;
if
(
p
!=
&
A
::
f
)
return
1
;
}