URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gdb-7.2/] [gdb/] [testsuite/] [gdb.cp/] [pr9167.cc] - Rev 835
Go to most recent revision | Compare with Previous | Blame | View Log
#include <iostream> template<typename DATA> struct ATB { int data; ATB() : data(0) {} }; template<typename DATA, typename DerivedType > class A : public ATB<DATA> { public: static DerivedType const DEFAULT_INSTANCE; }; template<typename DATA, typename DerivedType> const DerivedType A<DATA, DerivedType>::DEFAULT_INSTANCE; class B : public A<int, B> { }; int main() { B b; // If this if-block is removed then GDB shall // not infinitely recurse when trying to print b. return 0; // marker }
Go to most recent revision | Compare with Previous | Blame | View Log