summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/to_digit_is_some.stderr
blob: 10a1b393a3906fced44d5ec028e9e9666282312c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: use of `.to_digit(..).is_some()`
  --> $DIR/to_digit_is_some.rs:9:13
   |
LL |     let _ = d.to_digit(8).is_some();
   |             ^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `d.is_digit(8)`
   |
   = note: `-D clippy::to-digit-is-some` implied by `-D warnings`

error: use of `.to_digit(..).is_some()`
  --> $DIR/to_digit_is_some.rs:10:13
   |
LL |     let _ = char::to_digit(c, 8).is_some();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `char::is_digit(c, 8)`

error: aborting due to 2 previous errors