blob: b5b79ed3771c32f3b6c965631e36b83c63a7ac5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0308]: mismatched types
--> $DIR/gate.rs:4:9
|
LL | match String::new() {
| ------------- this expression has type `String`
LL | "" | _ => {}
| ^^ expected `String`, found `&str`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|