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

Lines Matching defs:e4

91 struct E4 {
92 E4() noexcept(false);
93 E4(const E4&) noexcept(false);
94 E4(E4&&) noexcept(false);
95 E4 &operator=(const E4&) noexcept(false);
96 E4 &operator=(E4&&) noexcept(false);
97 ~E4() noexcept(false);
107 E4 e4;