Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
ptrmem29.C
blob: 7700c0b9722b8eca8c74c40b1fdb631d1ff5f48a [
file
] [
log
] [
blame
]
// PR c++/62659
struct
D
{
typedef
int
(
D
::*
cont_func
)();
template
<cont_func>
struct
B
;
template
<
cont_func cont_f
>
void
wait
(
B
<cont_f>
***);
int
done
();
template
<bool>
void
fix
()
{
wait
<&
D
::
done
>(
0
);
}
};