Home
last modified time | relevance | path

Searched refs:MoveConstructorTest (Results 1 – 1 of 1) sorted by relevance

/llvm-project/clang/test/Analysis/
H A Dcxx-uninitialized-object.cpp657 struct MoveConstructorTest { struct
661 MoveConstructorTest() : i(1337) {} in MoveConstructorTest() argument
662 MoveConstructorTest(const CopyConstructorTest &other) = delete;
663 MoveConstructorTest(const CopyConstructorTest &&other) {} in MoveConstructorTest() argument
667 MoveConstructorTest cct; in fMoveConstructorTest()
669 MoveConstructorTest copy(static_cast<MoveConstructorTest &&>(cct)); // no-warning in fMoveConstructorTest()