OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [named.C] - Rev 338

Compare with Previous | Blame | View Log

// { dg-options "--std=c++0x" }
// { dg-do link }

template<typename _Tp>
inline _Tp&&
movel(_Tp& __t)
{ return static_cast<_Tp&&>(__t); }

struct S {};
struct T
{
  T(S && s_) : s(movel(s_)) {}
  S && get() { return movel(s); }
  operator S&&() { return movel(s); }
  S && s;
};

void named(S const &) {}
void named(S&&);

void unnamed(S const &);
void unnamed(S&&) {}

void f(S && p)
{
  S && s(movel(p));
  T t(movel(s));

  named(s);                          // variable reference
  named(p);                          // parameter reference
  named(t.s);                        // class member access

  unnamed(t.get());                  // function return
  unnamed(t);                        // implicit conversion
  unnamed(static_cast<S&&>(s));      // cast to rvalue
}

int main()
{
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.