2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / memfriend16.C
blob1276970e34490223859afe746dc04363a2f0b51f
1 // { dg-do compile }
3 // Copyright (C) 2004 Free Software Foundation
4 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
6 // Nested class of class template as friend
8 template<class T> struct A
10   template <class U> struct B1
11   {
12   };
13   template <class U> struct B2
14   {
15     void f();
16   };
19 class C {
20   int i;        // { dg-error "private" }
21   template<class T> template <class U> friend struct A<T>::B1;
24 template<class T> template <class U> void A<T>::B2<U>::f()
26   C c;
27   c.i = 0;      // { dg-error "context" }
30 int main()
32   A<int>::B2<int> b1;
33   b1.f();       // { dg-message "required" }