Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
net23.C
blob: 97120ea9099083cf91f3d5e772aafe339ff446a3 [
file
] [
log
] [
blame
]
// { dg-do assemble }
class
environment
{
public
:
int
get_font
()
;
};
typedef
int
(
environment
::*
INT_FUNCP
)();
void
myfoo
(
INT_FUNCP a
);
void
init_env_requests
()
{
myfoo
(&
environment
::
get_font
);
}