2020-11-05 07:29:48 -06:00
|
|
|
error[E0601]: `main` function not found in crate `ice_6250`
|
2022-01-20 18:15:39 -06:00
|
|
|
--> $DIR/ice-6250.rs:16:2
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
2022-01-20 18:15:39 -06:00
|
|
|
LL | }
|
|
|
|
| ^ consider adding a `main` function to `$DIR/ice-6250.rs`
|
2020-11-05 07:29:48 -06:00
|
|
|
|
2020-11-07 08:28:55 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/ice-6250.rs:12:14
|
|
|
|
|
|
2021-11-25 12:39:32 -06:00
|
|
|
LL | for reference in vec![1, 2, 3] {
|
|
|
|
| --------- expected due to the type of this binding
|
|
|
|
...
|
2020-11-07 08:28:55 -06:00
|
|
|
LL | Some(reference) = cache.data.get(key) {
|
2021-06-28 13:22:47 -05:00
|
|
|
| ^^^^^^^^^ expected integer, found `&i32`
|
|
|
|
|
|
|
|
|
help: consider dereferencing the borrow
|
|
|
|
|
|
|
|
|
LL | Some(*reference) = cache.data.get(key) {
|
2021-08-11 09:21:33 -05:00
|
|
|
| +
|
2020-11-07 08:28:55 -06:00
|
|
|
|
2020-11-05 07:29:48 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/ice-6250.rs:12:9
|
|
|
|
|
|
|
|
|
LL | Some(reference) = cache.data.get(key) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `bool`, found `()`
|
2022-11-09 05:23:23 -06:00
|
|
|
|
|
|
|
|
help: consider adding `let`
|
|
|
|
|
|
|
|
|
LL | let Some(reference) = cache.data.get(key) {
|
|
|
|
| +++
|
2020-11-05 07:29:48 -06:00
|
|
|
|
2021-11-03 01:50:57 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2020-11-05 07:29:48 -06:00
|
|
|
|
2021-11-03 01:50:57 -05:00
|
|
|
Some errors have detailed explanations: E0308, E0601.
|
2020-11-05 07:29:48 -06:00
|
|
|
For more information about an error, try `rustc --explain E0308`.
|