view gcc/testsuite/g++.old-deja/g++.pt/typename5.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do assemble  }
// { dg-options "-Wno-deprecated" }

template <class T>
struct A
{
  typedef T A_Type;
};


template <class U>
struct B : public A<U>
{
};


template <class U>
struct C : public B<U>
{
  void Func(A_Type);  // { dg-error "has not been declared" } implicit typename
};


template <class U>
void C<U>::Func(A_Type) { // { dg-error "declared void" "void" } implicit typename
// { dg-error "not declared" "decl" { target *-*-* } .-1 }
}