Searched refs:NotCopyableWithSwap (Results 1 – 1 of 1) sorted by relevance
38 struct NotCopyableWithSwap { struct39 NotCopyableWithSwap() = default;40 NotCopyableWithSwap(const NotCopyableWithSwap &) = delete;41 NotCopyableWithSwap &operator=(const NotCopyableWithSwap &) = delete;43 void swap(NotCopyableWithSwap &, NotCopyableWithSwap) {} in swap() argument502 using V = std::variant<int, NotCopyableWithSwap>; in test_swap_sfinae()