Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
tredecl2.C
blob: 6d354781a18e49f28039667381888e29fd2c7cfa [
file
] [
log
] [
blame
]
// { dg-do assemble }
// No bug; making sure my fix for tredecl.C doesn't break other cases
template
<
class
T
>
struct
Foo
{
Foo
<
T
>
*
me
()
{
return
this
;
}
};
Foo
<int>
i
;