PR c++/92966
* method.c (early_check_defaulted_comparison): Don't set
DECL_MAYBE_DELETED when returning false.
* g++.dg/cpp2a/spaceship-eq8.C: New test.
From-SVN: r279683
2019-12-20 Jakub Jelinek <jakub@redhat.com>
+ PR c++/92966
+ * method.c (early_check_defaulted_comparison): Don't set
+ DECL_MAYBE_DELETED when returning false.
+
PR c++/92973
* method.c (early_check_defaulted_comparison): For C++17 and earlier
diagnose defaulted comparison operators.
}
/* We still need to deduce deleted/constexpr/noexcept and maybe return. */
- DECL_MAYBE_DELETED (fn) = true;
+ DECL_MAYBE_DELETED (fn) = ok;
return ok;
}
2019-12-20 Jakub Jelinek <jakub@redhat.com>
+ PR c++/92966
+ * g++.dg/cpp2a/spaceship-eq8.C: New test.
+
PR c++/92973
* g++.dg/cpp0x/spaceship-eq1.C: New test.
--- /dev/null
+// PR c++/92966
+// { dg-do compile { target c++2a } }
+
+struct S {
+ int operator==(const S&) const = default; // { dg-error "must return 'bool'" }
+ int s; // { dg-message "declared here" "" { target *-*-* } .-1 }
+};
+static_assert(S{} == S{}); // { dg-error "" }