lower bstr version requirement to 1.6.0

This commit is contained in:
Oli Scherer 2024-02-27 13:34:01 +00:00
parent e33cba523a
commit 592fe89997
10 changed files with 27 additions and 22 deletions

View file

@ -147,6 +147,7 @@ macro_rules! impl_partial_eq {
($ty:ident) => {
impl PartialEq for $ty {
fn eq(&self, other: &Self) -> bool {
//~^ ERROR: function cannot return without recursing
self == other
}
}
@ -156,7 +157,6 @@ macro_rules! impl_partial_eq {
struct S5;
impl_partial_eq!(S5);
//~^ ERROR: function cannot return without recursing
struct S6 {
field: String,