URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [deduce.C] - Rev 478
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "--std=c++0x" }
template<typename T, typename U> struct same_type;
template<typename T> struct same_type<T, T> {};
int lval_int;
int rval_int();
int const lval_const_int=0;
int const&& rval_const_int();
template <typename T> void deduce_lval_int(T && t)
{
same_type<T, int &>();
}
template <typename T> void deduce_rval_int(T && t)
{
same_type<T, int>();
}
template <typename T> void deduce_lval_const_int(T && t)
{
same_type<T, const int &>();
}
template <typename T> void deduce_rval_const_int(T && t)
{
same_type<T, const int>();
}
void f()
{
deduce_lval_int(lval_int);
deduce_rval_int(rval_int());
deduce_lval_const_int(lval_const_int);
deduce_rval_const_int(rval_const_int());
}
Go to most recent revision | Compare with Previous | Blame | View Log