blob: 4fe733ec56a50da2befce71cd3fb555a59b560d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// NB: This file has and *should* have trailing spaces.
// When making changes, please ensure they are not removed.
fn after_comments() {
// spaces after line comments give errors
/*
in block comments
too
*/
}
fn main() {
var := 'error about the spaces right there'
no_err := "inside multi line strings it's fine.
but not after"
}
|