aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/typename18.C
blob: 4134ef6f64bf8b100856ddf4be7fba2cd0e57b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile }

// These typename should work as they are types.
struct A
{
  typedef int a;
  template <int>
  struct f {};
  template<int> void foo(int i)
  {
    typename A::a(i1);
    typename A::f<0>(i2);
  }
};