view gcc/testsuite/g++.dg/template/typedef16.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

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

struct C0
{
};

template<class T, class U>
struct C1
{
    typedef C0 TypedefedC0;

    template<class W>
    void foo (TypedefedC0 *, W)
    {
    }

    template<class W>  C1 (W w)
    {
        TypedefedC0 c;
        foo (&c, w);
    }

};
C0 c0;
C1<int, char> c1 (&c0);