aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/typedef13.C
blob: 5d40e63f1e2e69ae596bf7600075cea2069b04b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin: PR c++/26693
// { dg-do compile }

class A
{
  typedef int mytype; // { dg-error "typedef int A::mytype' is private" }
};

template <class T> class B : public A
{
  mytype mem; // { dg-error "within this context"  }
};

B<int> b; // { dg-message "required from here" }