Fix warnings occured during profiledboostrap on
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / template1.C
blob552f8eeb8b278ad8ad59f43436db26ecae539903
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 // g++-2.2.1: member functions returning a template type 
6 template <class T> struct list { };
8 struct A
10   list<int> L;
12   list<int>  get_list();
17 list<int> A::get_list() { return L; }