summaryrefslogtreecommitdiffstats
path: root/test/input/Method-rvalue-reference.cxx
blob: 30c12ee3af3ad42e894c973301ab2cfb033b9774 (plain)
1
2
3
4
5
6
7
8
9
class start {
  start(start&);
  start(start&&);
  start& operator=(start&);
  start& operator=(start&&);
  int method(int);
  int method(int&&);
  int&& method(int, int);
};