rust/tests/ui/builtin-type-shadow.stderr
2018-10-06 09:43:08 -07:00

22 lines
657 B
Text

error: This generic shadows the built-in type `u32`
--> $DIR/builtin-type-shadow.rs:15:8
|
15 | fn foo<u32>(a: u32) -> u32 {
| ^^^
|
= note: `-D clippy::builtin-type-shadow` implied by `-D warnings`
error[E0308]: mismatched types
--> $DIR/builtin-type-shadow.rs:16:5
|
15 | fn foo<u32>(a: u32) -> u32 {
| --- expected `u32` because of return type
16 | 42
| ^^ expected type parameter, found integral variable
|
= note: expected type `u32`
found type `{integer}`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.