-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
A-tytype system / type inference / traits / method resolutiontype system / type inference / traits / method resolutionC-bugCategory: bugCategory: bug
Description
fn impl_drop() -> impl Drop {
let rec = impl_drop(); // incorrectly renders `impl Sized` in the hint
}
fn impl_sized() -> impl Sized {
let rec = impl_sized(); // correctly renders `impl Sized` in the hint
}
fn impl_copy() -> impl Copy {
let rec = impl_copy(); // correctly renders `impl Copy` in the hint
}
Metadata
Metadata
Assignees
Labels
A-tytype system / type inference / traits / method resolutiontype system / type inference / traits / method resolutionC-bugCategory: bugCategory: bug