URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [sfinae1.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/14337template <bool> struct Constraint;template <> struct Constraint<true> { typedef int Result; };template <typename T>struct IsInt { static const bool value = false; };template <>struct IsInt<int> { static const bool value = true; };template <typename T>typename Constraint<IsInt<T>::value>::Result foo(T);template <typename T>typename Constraint<!IsInt<T>::value>::Result foo(T);template <typename>void bar() {foo(1);}
Go to most recent revision | Compare with Previous | Blame | View Log
