Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / friend38.C
blob41faf79110cffd8ab9cbaf85f719be9eac8e0eef
1 // PR c++/22352
3 template <class A>
4 class s
6   typedef int d;
7   template <class s, typename s::d>
8   friend class t;
9 };
11 s<int> t1;