Home
last modified time | relevance | path

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

/hardware/google/aemu/base/
DNoDestructor_unittest.cpp18 struct CopyOnly { struct
19 CopyOnly() = default;
20 CopyOnly(const CopyOnly&) = default;
21 CopyOnly& operator=(const CopyOnly&) = default;
22 CopyOnly(CopyOnly&&) = delete;
23 CopyOnly& operator=(CopyOnly&&) = delete;
33 ForwardingTestStruct(const CopyOnly&, MoveOnly&&) {} in ForwardingTestStruct()
36 CopyOnly copy_only; in TEST()