Lines Matching refs:E5
99 struct E5 { struct
100 E5() = default;
101 E5(const E5&) = default;
102 E5(E5&&) = default;
103 E5 &operator=(const E5&) = default;
104 E5 &operator=(E5&&) = default;
105 ~E5() = default;
109 E5 e5; argument
110 static_assert(!noexcept(E5()), "");
111 static_assert(!noexcept(E5(static_cast<E5&&>(e5))), "");
112 static_assert(!noexcept(E5(e5)), "");
113 static_assert(!noexcept(e5 = E5()), "");