Searched refs:CopyOnly (Results 1 – 1 of 1) sorted by relevance
18 struct CopyOnly { struct19 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()