Home | History | Annotate | Download | only in tests

Lines Matching refs:Moveable

13 class Moveable {
15 Moveable() {}
16 Moveable(Moveable&&) {}
17 Moveable& operator=(Moveable&&) { return *this; }
19 Moveable(const Moveable&);
20 Moveable& operator=(const Moveable&);
24 void operator()(T* t) { delete static_cast<const Moveable*>(t); }
29 Moveable src1; Moveable dst1(std::move(src1));
30 Moveable src2, dst2; dst2 = std::move(src2);