Searched defs:ThrowsCtorT (Results 1 – 2 of 2) sorted by relevance
42 struct ThrowsCtorT { struct43 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function44 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =()62 struct ThrowsCtorT { struct63 int value;64 ThrowsCtorT() : value(0) {} in ThrowsCtorT() argument65 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() function66 ThrowsCtorT &operator=(int v) noexcept { in operator =()
35 struct ThrowsCtorT { struct36 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function37 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =()55 struct ThrowsCtorT { struct56 int value;57 ThrowsCtorT() : value(0) {} in ThrowsCtorT() function58 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() argument59 ThrowsCtorT &operator=(int v) noexcept { in operator =()