URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [sfinae1.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "-std=c++0x" }
template< typename T_VECTOR >
void f(const T_VECTOR &a, decltype(a[0]) t = 0);
template< typename T >
void f(const T &a, decltype(a*1) t = 0);
int main() {
int c;
f(c);
}
Go to most recent revision | Compare with Previous | Blame | View Log