Home
last modified time | relevance | path

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

/llvm-project/llvm/unittests/Support/
H A DHashBuilderTest.cpp134 struct StructWithoutCopyOrMove { struct
136 StructWithoutCopyOrMove() = default; argument
137 explicit StructWithoutCopyOrMove(int I) : I(I) {} in StructWithoutCopyOrMove() function
138 StructWithoutCopyOrMove(const StructWithoutCopyOrMove &) = delete;
139 StructWithoutCopyOrMove &operator=(const StructWithoutCopyOrMove &) = delete;
143 const StructWithoutCopyOrMove &Value) { in addHash()
197 EXPECT_EQ(hashWithBuilder<HE>(StructWithoutCopyOrMove{1}), in TYPED_TEST()
282 std::pair<StructWithoutCopyOrMove, std::string> Pair; in TYPED_TEST()
301 std::tuple<StructWithoutCopyOrMove, std::string> Tuple; in TYPED_TEST()