summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/named.C
blob: b91e6989425fb8697877e8ceef79b5c8dfbef3e1 (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
30
31
32
33
34
35
// { dg-options "--std=c++0x" }
// { dg-do link }

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

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

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

void f(S && p)
{
  S && s(p);
  T t(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()
{
}