Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/utilities/utility/pairs/pairs.pair/
H A Dmove_ctor.pass.cpp28 struct NotCopyOrMoveConstructible { struct
29 NotCopyOrMoveConstructible() = default;
30 NotCopyOrMoveConstructible(NotCopyOrMoveConstructible const&) = delete;
31 NotCopyOrMoveConstructible(NotCopyOrMoveConstructible&&) = delete;
54 using P = std::pair<NotCopyOrMoveConstructible&, int>; in main()
57 NotCopyOrMoveConstructible obj; in main()
64 using P = std::pair<NotCopyOrMoveConstructible&&, int>; in main()
67 NotCopyOrMoveConstructible obj; in main()
H A Drv_pair_U_V.pass.cpp68 struct NotCopyOrMoveConstructible { struct
69 NotCopyOrMoveConstructible() = default;
70 NotCopyOrMoveConstructible(NotCopyOrMoveConstructible const&) = delete;
71 NotCopyOrMoveConstructible(NotCopyOrMoveConstructible&&) = delete;
180 using P1 = std::pair<NotCopyOrMoveConstructible&, long>; in main()
181 using P2 = std::pair<NotCopyOrMoveConstructible&, int>; in main()
184 NotCopyOrMoveConstructible obj; in main()
191 using P1 = std::pair<NotCopyOrMoveConstructible&&, long>; in main()
192 using P2 = std::pair<NotCopyOrMoveConstructible&&, int>; in main()
195 NotCopyOrMoveConstructible obj; in main()