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

Subversion Repositories openrisc

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

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

template <class data> class foo
{
    public:
        static const int a;
        static const int b;
        static const int c;
        static const int d;
};

template <class data> const int foo<data>::a = 1;
template <class data> const int foo<data>::b = a;
template <class data> const int foo<data>::c = b;
template <class data> const int foo<data>::d = c;

typedef foo<int> fooInt;

int main( void )
{
    fooInt *f;

    f = new fooInt();

    if (f->c != 1 || f->d != 1)
      return 1;
}

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.