2019-08-15 18:46:52 +00:00
|
|
|
error[E0308]: mismatched types
|
2023-05-30 19:48:35 +00:00
|
|
|
--> $DIR/dont-suggest-try_into-in-macros.rs:2:23
|
2019-08-15 18:46:52 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!(10u64, 10usize);
|
2023-05-30 19:48:35 +00:00
|
|
|
| ^^^^^^^ expected `u64`, found `usize`
|
2019-08-15 18:46:52 +00:00
|
|
|
|
|
2023-05-30 19:48:35 +00:00
|
|
|
help: change the type of the numeric literal from `usize` to `u64`
|
|
|
|
|
|
|
|
|
LL | assert_eq!(10u64, 10u64);
|
|
|
|
| ~~~
|
2019-08-15 18:46:52 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-08-15 18:46:52 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|