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/] [overload-conv-1.C] - Diff between revs 301 and 338

Only display areas with differences | Details | Blame | View Log

Rev 301 Rev 338
// { dg-options "--std=c++0x" }
// { dg-options "--std=c++0x" }
// { dg-do link }
// { dg-do link }
struct S {};
struct S {};
struct T
struct T
{
{
  operator S() { return S(); }
  operator S() { return S(); }
};
};
struct U
struct U
{
{
  operator S&() { return *static_cast(0); }
  operator S&() { return *static_cast(0); }
};
};
void f(const S&);
void f(const S&);
void f(S&&) {}
void f(S&&) {}
void g(const S&) {}
void g(const S&) {}
void g(S&&);
void g(S&&);
int main()
int main()
{
{
  T t;
  T t;
  f(t);
  f(t);
  U u;
  U u;
  g(u);
  g(u);
}
}
 
 

powered by: WebSVN 2.1.0

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