Closed
Description
I suggest to give some kind of warning or hint to remove the double ;; here:
fn main() {
println!("hello");;
}
The D language is different from Rust so the situation isn't directly comparable, but in a case like this gives a warning like this:
temp.d(2,22): Warning: use '{ }' for an empty statement, not a ';'