Searched refs:MoveConstructorTest (Results 1 – 1 of 1) sorted by relevance
657 struct MoveConstructorTest { struct661 MoveConstructorTest() : i(1337) {} in MoveConstructorTest() argument662 MoveConstructorTest(const CopyConstructorTest &other) = delete;663 MoveConstructorTest(const CopyConstructorTest &&other) {} in MoveConstructorTest() argument667 MoveConstructorTest cct; in fMoveConstructorTest()669 MoveConstructorTest copy(static_cast<MoveConstructorTest &&>(cct)); // no-warning in fMoveConstructorTest()