Home | History | Annotate | Download | only in dcl.fct.def.default

Lines Matching defs:e3

81 struct E3 {
82 E3() = default;
83 E3(const E3&) = default;
84 E3(E3&&) = default;
85 E3 &operator=(const E3&) = default;
86 E3 &operator=(E3&&) = default;
87 ~E3() = default;
89 E3 e3;
90 static_assert(noexcept(E3(), E3(E3()), E3(e3), e3 = E3(), e3 = e3), "");