Searched refs:NotCopyOrMoveConstructible (Results 1 – 2 of 2) sorted by relevance
28 struct NotCopyOrMoveConstructible { struct29 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()
68 struct NotCopyOrMoveConstructible { struct69 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()