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

template <typename T>
struct B
{
protected:
  typedef int M; // { dg-error "protected" }
};

template <typename T>
struct A : B<T> {
  typedef typename B<char>::M N; // { dg-error "context" }
  A (int = N ());
};

A<int> a = A<int> ();