view gcc/testsuite/g++.dg/template/typedef24.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++/42225
// { dg-do compile }

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

template<class T, int>
struct B
{
    typedef T TT;
    typedef typename TT::I TT_I;
    typedef A<TT_I> TA;
};

template<class T>
void
foo()
{
    typedef T TT;
    typedef typename TT::I TT_I;
    typedef A<TT_I> TA;
}

int
main()
{
    foo<A<int> >();
}