blob: 314c9060d4f7dc68a5d2469623c96a230bbbe472 [file] [log] [blame]
error: expected type, found `0`
--> $DIR/type-ascription-instead-of-statement-end.rs:15:5
|
LL | println!("test"):
| - help: try using a semicolon: `;`
LL | 0; //~ ERROR expected type, found `0`
| ^ expecting a type here because of type ascription
error: expected type, found `0`
--> $DIR/type-ascription-instead-of-statement-end.rs:19:23
|
LL | println!("test"): 0; //~ ERROR expected type, found `0`
| ^ expecting a type here because of type ascription
error: aborting due to 2 previous errors