Searched refs:MyType1 (Results 1 – 3 of 3) sorted by relevance
10 struct MyType1 { struct11 MyType1() = default;12 [[noreturn]] MyType1(MyType1 const&) { throw 1; } in MyType1() argument13 MyType1& operator=(MyType1 const&) { throw 3; } in operator =() argument44 using type = std::variant<MyType1, MyType2>;62 using inner = std::variant<MyType1, float, int>;73 REQUIRE_THROWS_AS( std::get<0>(value).emplace<MyType1>(MyType1{}), int );
864 std::vector<MyType1>;866 LLVM_YAML_IS_SEQUENCE_VECTOR(MyType1)