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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [ttp32.C] - Blame information for rev 699

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 699 jeremybenn
// { dg-do run  }
2
template class D
3
{
4
        public:
5
                int f();
6
};
7
 
8
template int D::f()
9
{
10
        return sizeof(T);
11
}
12
 
13
extern "C" void abort();
14
 
15
template class D,class E> class C
16
{
17
                D d;
18
        public:
19
                int f() { abort(); return 0; }
20
};
21
 
22
template