Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/Analysis/
H A Duse-after-move.cpp903 struct MoveOnlyWithDestructor { struct
904 MoveOnlyWithDestructor();
905 ~MoveOnlyWithDestructor();
906 MoveOnlyWithDestructor(const MoveOnlyWithDestructor &m) = delete;
907 MoveOnlyWithDestructor(MoveOnlyWithDestructor &&m);
910 MoveOnlyWithDestructor foo() { in foo()
911 MoveOnlyWithDestructor m; in foo()