URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.hp/] [gdb.objdbg/] [objdbg04/] [x1.cc] - Rev 106
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include "x.h" template class Adder<int>; int main() { Adder<int> add; add.set(3); add.add(3); printf("In main: %d\n", add.get()); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log