Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
template1.C
blob: 552f8eeb8b278ad8ad59f43436db26ecae539903 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// GROUPS passed templates
// g++-2.2.1: member functions returning a template type
template
<
class
T
>
struct
list
{
};
struct
A
{
list
<int>
L
;
list
<int>
get_list
();
};
list
<int>
A
::
get_list
()
{
return
L
;
}