2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / inherit3.C
blob97b9e5b3eaac91899ddd0f8b0d2aa51519005458
1 template <typename T>
2 struct set {
3   void insert (const T&);
4   template <class X>
5   void insert  (X, X);
6 };
8 struct C : public set<int> {
9   void f (const int i) {
10     insert (i);
11   }