OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [ttp31.C] - Diff between revs 305 and 384

Only display areas with differences | Details | Blame | View Log

Rev 305 Rev 384
// { dg-do run  }
// { dg-do run  }
template class D
template class D
{
{
        public:
        public:
                int f();
                int f();
};
};
template int D::f()
template int D::f()
{
{
        return sizeof(T);
        return sizeof(T);
}
}
extern "C" void abort();
extern "C" void abort();
template class D,class E> class C
template class D,class E> class C
{
{
                D d;
                D d;
        public:
        public:
                int f() { abort(); return 0; }
                int f() { abort(); return 0; }
};
};
template