aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/overload-conv-1.C
blob: 778111283ff5c8b84af30ef3a5d9b21415df9777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// { dg-options "--std=c++0x" }
// { dg-do link }

struct S {};

struct T
{
  operator S() { return S(); }
};

struct U
{
  operator S&() { return *static_cast<S*>(0); }
};

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

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

int main()
{
  T t;
  f(t);

  U u;
  g(u);
}