Searched refs:NoThrowT (Results 1 – 2 of 2) sorted by relevance
44 struct NoThrowT { struct45 NoThrowT(int) noexcept {} in NoThrowT() argument46 NoThrowT &operator=(int) noexcept { return *this; } in operator =() argument71 struct NoThrowT { struct73 NoThrowT() : value(0) {} in NoThrowT() function74 NoThrowT(int v) noexcept : value(v) {} in NoThrowT() argument75 NoThrowT &operator=(int v) noexcept { in operator =() argument87 using V = std::variant<Dummy, NoThrowT>; in test_T_assignment_noexcept()
36 struct NoThrowT { struct37 NoThrowT(int) noexcept(true) {} in NoThrowT() function42 using V = std::variant<Dummy, NoThrowT>; in test_T_ctor_noexcept()