remove confusing 1i32

The font can make this hard to read, and we don't even strictly need
the annotation, so let's just remove it

Fixes #26287
This commit is contained in:
Steve Klabnik 2015-06-15 12:42:07 -04:00
parent 0d82fb55db
commit 3db26db24a

View File

@ -332,7 +332,7 @@ fn normal<T: ConvertTo<i64>>(x: &T) -> i64 {
fn inverse<T>() -> T
// this is using ConvertTo as if it were "ConvertFrom<i32>"
where i32: ConvertTo<T> {
1i32.convert()
42.convert()
}
```