* arm.md (stack_tie): New insn. Use an idiom that the alias code
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb107.C
blob8d0f3cbe5b18bfec605b583eb221864bf443069c
1 // Build don't link: 
2 template <class T>
3 struct X
5     virtual void f(int) const;
6 };
8 template <class T>
9 struct Y: public X<T>
11     virtual void f(int) const;
14 template <class T>
15 void Y<T>::f(int) const
19 template <>
20 void Y<bool>::f(int) const;