view gcc/testsuite/g++.dg/template/typename18.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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);
  }
};