2018-10-20 23:36:17 +03:00
|
|
|
error: no valid digits found for number
|
2019-01-11 19:56:41 -08:00
|
|
|
--> $DIR/issue-1802-2.rs:5:16
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
|
LL | log(error, 0b_usize);
|
|
|
|
| ^^^
|
|
|
|
|
2019-01-11 19:56:41 -08: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 23:36:17 +03:00
|
|
|
|
2019-01-11 19:56:41 -08:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|