aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/typedef16.C
blob: 29870605a62370989381d8a5c6e00d9cbce19fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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);