23 lines
615 B
Plaintext
23 lines
615 B
Plaintext
|
error: unknown start of token: \u{37e}
|
|||
|
--> $DIR/recover-from-homoglyph.rs:2:17
|
|||
|
|
|
|||
|
LL | println!("");
|
|||
|
| ^
|
|||
|
help: Unicode character ';' (Greek Question Mark) looks like ';' (Semicolon), but it is not
|
|||
|
|
|
|||
|
LL | println!("");
|
|||
|
| ^
|
|||
|
|
|||
|
error[E0308]: mismatched types
|
|||
|
--> $DIR/recover-from-homoglyph.rs:3:20
|
|||
|
|
|
|||
|
LL | let x: usize = ();
|
|||
|
| ^^ expected usize, found ()
|
|||
|
|
|
|||
|
= note: expected type `usize`
|
|||
|
found type `()`
|
|||
|
|
|||
|
error: aborting due to 2 previous errors
|
|||
|
|
|||
|
For more information about this error, try `rustc --explain E0308`.
|