mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 20:42:04 +00:00
Revert "Add bounds for fields in derive macro"
This commit is contained in:
parent
bca364c3fe
commit
435d585d0c
3 changed files with 27 additions and 66 deletions
|
@ -471,7 +471,7 @@ struct Foo {}
|
|||
"#,
|
||||
expect![[r#"
|
||||
Clone
|
||||
impl < >core::clone::Clone for Foo< >where{}
|
||||
impl < >core::clone::Clone for Foo< >{}
|
||||
"#]],
|
||||
);
|
||||
}
|
||||
|
@ -488,7 +488,7 @@ struct Foo {}
|
|||
"#,
|
||||
expect![[r#"
|
||||
Copy
|
||||
impl < >core::marker::Copy for Foo< >where{}
|
||||
impl < >core::marker::Copy for Foo< >{}
|
||||
"#]],
|
||||
);
|
||||
}
|
||||
|
@ -504,7 +504,7 @@ struct Foo {}
|
|||
"#,
|
||||
expect![[r#"
|
||||
Copy
|
||||
impl < >core::marker::Copy for Foo< >where{}
|
||||
impl < >core::marker::Copy for Foo< >{}
|
||||
"#]],
|
||||
);
|
||||
check(
|
||||
|
@ -516,7 +516,7 @@ struct Foo {}
|
|||
"#,
|
||||
expect![[r#"
|
||||
Clone
|
||||
impl < >core::clone::Clone for Foo< >where{}
|
||||
impl < >core::clone::Clone for Foo< >{}
|
||||
"#]],
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue