blob: a0855c317379fbd31e20a23cceec8cfe88019d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
error[E0308]: mismatched types
--> $DIR/consider-removing-last-semi.rs:11:18
|
LL | fn f() -> String { //~ ERROR mismatched types
| __________________^
LL | | 0u8;
LL | | "bla".to_string();
| | - help: consider removing this semicolon
LL | | }
| |_^ expected struct `std::string::String`, found ()
|
= note: expected type `std::string::String`
found type `()`
error[E0308]: mismatched types
--> $DIR/consider-removing-last-semi.rs:16:18
|
LL | fn g() -> String { //~ ERROR mismatched types
| __________________^
LL | | "this won't work".to_string();
LL | | "removeme".to_string();
| | - help: consider removing this semicolon
LL | | }
| |_^ expected struct `std::string::String`, found ()
|
= note: expected type `std::string::String`
found type `()`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.
|