URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [regress/] [array1.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/47808
// { dg-options -std=c++0x }
template <typename T>
inline T abs (T const & x) { return x; }
template <typename T>
void f (T)
{
typedef int ai[(abs(0.1) > 0) ? 1 : -1];
}
int main()
{
f(1);
}
Go to most recent revision | Compare with Previous | Blame | View Log