blob: db99d1ec07be381f68fb4fd855e0cc4e0e4bba2c [file] [log] [blame]
error: expected type, found `0`
--> $DIR/type-ascription-instead-of-statement-end.rs:5: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:9: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