2022-06-03 08:59:26 -05:00
|
|
|
error: using `as _` conversion
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/as_underscore.rs:7:9
|
2022-06-03 08:59:26 -05:00
|
|
|
|
|
|
|
|
LL | foo(n as _);
|
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| help: consider giving the type explicitly: `usize`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::as-underscore` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: using `as _` conversion
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/as_underscore.rs:10:18
|
2022-06-03 08:59:26 -05:00
|
|
|
|
|
|
|
|
LL | let _n: u8 = n as _;
|
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| help: consider giving the type explicitly: `u8`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|