view gcc/testsuite/g++.dg/template/canon-type-7.C @ 111:04ced10e8804

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

// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin PR c++/39754
// { dg-do compile }

struct Foo {};
template<typename> struct A ;
template<typename T ,typename = A<T> > struct B { } ;

template<class W, class>
struct D
{
  typedef W X;
  A<X (Foo::*) (X)> a ;
};

template<class Y>
struct E
{
  B<Y (Foo::*) (Y)> b ;
};
E<int> e ;