OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [typedef16.C] - Rev 696

Go to most recent revision | Compare with Previous | Blame | View Log

// 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);

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.