2022-07-05 07:42:19 +00:00
|
|
|
error[E0308]: mismatched types
|
2022-07-13 18:13:07 +00:00
|
|
|
--> $DIR/gate.rs:4:9
|
2022-07-05 07:42:19 +00:00
|
|
|
|
|
|
|
|
LL | match String::new() {
|
|
|
|
| ------------- this expression has type `String`
|
|
|
|
LL | "" | _ => {}
|
2023-01-02 18:00:33 -08:00
|
|
|
| ^^ expected `String`, found `&str`
|
2022-07-05 07:42:19 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|