Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / friend29.C
blob1c0c6f0f765af2eb653897cedd74aa595e2d1742
1 // PR c++/15701
3 template<template<int> class T> struct A : T<0>
5     void foo();
6     template<template<int> class U> friend void A<U>::foo();
7 };
9 template<int> struct B {};
11 A<B> a;