Searched defs:ThrowsCtorT (Results 1 – 1 of 1) sorted by relevance
34 struct ThrowsCtorT { struct35 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function36 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =()54 struct ThrowsCtorT { struct55 int value;56 ThrowsCtorT() : value(0) {} in ThrowsCtorT() argument57 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() function58 ThrowsCtorT &operator=(int v) noexcept { in operator =()