Display impl Sized correctly
It used to display as just `impl`
This commit is contained in:
parent
c0bbc3927e
commit
7ba17aa72f
1 changed files with 2 additions and 0 deletions
|
|
@ -1325,6 +1325,8 @@ define_print! {
|
|||
}
|
||||
if !is_sized {
|
||||
write!(f, "{}?Sized", if first { " " } else { "+" })?;
|
||||
} else if first {
|
||||
write!(f, " Sized")?;
|
||||
}
|
||||
Ok(())
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue