summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/as_underscore.stderr
blob: d7cd58d965acb8a334eca05a675304b395b9af9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: using `as _` conversion
  --> $DIR/as_underscore.rs:9:9
   |
LL |     foo(n as _);
   |         ^^^^^-
   |              |
   |              help: consider giving the type explicitly: `usize`
   |
   = note: `-D clippy::as-underscore` implied by `-D warnings`

error: using `as _` conversion
  --> $DIR/as_underscore.rs:12:18
   |
LL |     let _n: u8 = n as _;
   |                  ^^^^^-
   |                       |
   |                       help: consider giving the type explicitly: `u8`

error: aborting due to 2 previous errors