6b6253016f
rustc now (https://github.com/rust-lang/rust/issues/33525) does not report an error count anymore, because it was not correct in many cases.
20 lines
457 B
Plaintext
20 lines
457 B
Plaintext
warning: This generic shadows the built-in type `u32`
|
|
--> $DIR/builtin-type-shadow.rs:5:8
|
|
|
|
|
5 | fn foo<u32>(a: u32) -> u32 {
|
|
| ^^^
|
|
|
|
|
= note: #[warn(builtin_type_shadow)] on by default
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/builtin-type-shadow.rs:6:5
|
|
|
|
|
6 | 42
|
|
| ^^ expected type parameter, found integral variable
|
|
|
|
|
= note: expected type `u32`
|
|
found type `{integer}`
|
|
|
|
error: aborting due to previous error(s)
|
|
|