2018-10-20 15:36:17 -05:00
|
|
|
error: no valid digits found for number
|
2019-01-11 21:56:41 -06:00
|
|
|
--> $DIR/issue-1802-2.rs:5:16
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
|
LL | log(error, 0b_usize);
|
|
|
|
| ^^^
|
|
|
|
|
2019-01-11 21:56:41 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-1802-2.rs:5:16
|
|
|
|
|
|
|
|
|
LL | log(error, 0b_usize);
|
|
|
|
| ^^^^^^^^ expected i32, found usize
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2019-01-11 21:56:41 -06:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|