URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [debug/] [template1.C] - Rev 816
Compare with Previous | Blame | View Log
// PR c++/5118
template <int Count>
class d
{
public:
d()
{
myInt = Count;
}
int myInt;
virtual ~d() {}
};
volatile d<5> instD;