mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
36 lines
1 KiB
Text
36 lines
1 KiB
Text
error[E0601]: `main` function not found in crate `ice_6250`
|
|
--> $DIR/ice-6250.rs:4:1
|
|
|
|
|
LL | / pub struct Cache {
|
|
LL | | data: Vec<i32>,
|
|
LL | | }
|
|
LL | |
|
|
... |
|
|
LL | | }
|
|
LL | | }
|
|
| |_^ consider adding a `main` function to `$DIR/ice-6250.rs`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/ice-6250.rs:12:14
|
|
|
|
|
LL | for reference in vec![1, 2, 3] {
|
|
| --------- expected due to the type of this binding
|
|
...
|
|
LL | Some(reference) = cache.data.get(key) {
|
|
| ^^^^^^^^^ expected integer, found `&i32`
|
|
|
|
|
help: consider dereferencing the borrow
|
|
|
|
|
LL | Some(*reference) = cache.data.get(key) {
|
|
| +
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/ice-6250.rs:12:9
|
|
|
|
|
LL | Some(reference) = cache.data.get(key) {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `bool`, found `()`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
Some errors have detailed explanations: E0308, E0601.
|
|
For more information about an error, try `rustc --explain E0308`.
|