2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend38.C
blob429e421b8979637cb9a759424b2b58dfd4650c34
1 // { dg-do assemble  }
3 // Overly simplified from testcase by "B. K. Oxley" <binkley@bigfoot.com>
5 template<class P, class Q> struct foo {
6   typedef P parent_type;
7   friend parent_type; // { dg-error "" } template parameters cannot be friends
8   friend Q;           // { dg-error "" } template parameters cannot be friends
9 };