aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tc1/dr161.C
blob: 49f679a0c1d6cedf7d82c1c0b194cc34f3cd2d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR161: Access to protected nested type 

namespace N1 {
  struct A 
  {
  protected:
    typedef int type;
  };

  struct B : public A
  {
    void test(void)
    {
      A::type t;
    }

    friend void ftest(void)
    {
      A::type t;
    }
  };
}


namespace N2 {
  template <class T>
  struct A 
  {
  protected:
    typedef int type;
  };

  template <class T>
  struct B : public A<T>
  {
    void test(B b)
    {
      typename A<T>::type t;
    }

    friend void ftest(B b)
    {
      typename A<T>::type t;
    }
  };

  template struct B<void>;
}