summaryrefslogtreecommitdiffstats
path: root/test/input/Class-implicit-members.cxx
blob: 2d79ee5e2ea441621fa4b405f2f778eedb120f80 (plain)
1
2
3
4
5
6
7
class start {
  start method(start const& x) {
    start s;
    s = x;
    return s;
  }
};