Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / local3.C
blob5a01a44956708e19501b7a09c71cd03311557dfb
1  template<class T>
2  void f(const T&)
3  {
4          struct B {
5            
6                  void g (T);
7          };
8          B b;
9  }
10  void g()
11  {
12          f(42);
13  }