aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/access8.C
blob: 4bdadae3c2b08b71210c0cda81e8fa3d47e035fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2003 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
// { dg-do compile }

// Template instantiate during deferred access check

template <class T> struct C {
  typedef typename T::X Y;
};

class A {
  typedef int X;
  template <class T> friend struct C;
};

C<A>::Y f(int);