Skip to content

Commit

Permalink
Display impl Sized correctly
Browse files Browse the repository at this point in the history
It used to display as just `impl`
  • Loading branch information
matthewjasper committed Jan 3, 2019
1 parent c0bbc39 commit 7ba17aa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/librustc/util/ppaux.rs
Expand Up @@ -1325,6 +1325,8 @@ define_print! {
}
if !is_sized {
write!(f, "{}?Sized", if first { " " } else { "+" })?;
} else if first {
write!(f, " Sized")?;
}
Ok(())
})
Expand Down

0 comments on commit 7ba17aa

Please sign in to comment.