URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [koenig8.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/40740template<class T>T addsome(T v) {return v+1;}int addsome(int v) {return v+2;}int main() {int i = 0;if (addsome(i) != 2)return 1;if (addsome<>(i) != 1)return 2;return 0;}
Go to most recent revision | Compare with Previous | Blame | View Log
