OSDN Git Service

2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / typedef19.C
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR c++/40007
3 // { dg-do compile }
4
5 class A
6 {
7   typedef int mytype; // { dg-error "'typedef int A::mytype' is private" }
8 };
9
10 template <class T>
11 class B : public A
12 {
13 };
14
15 template<class T>
16 class B<T*> : public A
17 {
18   mytype mem; // { dg-error "within this context" }
19 };
20
21 B<int*> b;