Closed
Description
fn main() {
let message = "world";
println!("Hello, {}", message/);
}
This gives the following compile error:
<anon>:3:34: 3:35 error: unexpected token: `<eof>`
<anon>:3 println!("Hello, {}", message/);
^
I think this is slightly misleading: it's not an EOF at the position where the caret is.