Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20081119_0.C
blob: c77a4309811c12562ab44aa14aa491865206c893 [
file
] [
log
] [
blame
]
class
foo
{
public
:
foo
()
{}
virtual
~
foo
()
{}
virtual
void
m
()
{}
};
template
<
typename
t
>
class
bar
:
public
foo
{
public
:
bar
()
{}
};
void
f1
(
bar
<int>
*
p
)
{
p
->
m
();
}
int
main
()
{
return
0
;
}