v / cmd / tools / vvet / tests / trailing_space.vv
16 lines · 14 sloc · 356 bytes · 46e7e27ba35f94e3038378051f69eb06e4c7d27a
Raw
1// NB: This file has and *should* have trailing spaces.
2// When making changes, please ensure they are not removed.
3
4fn after_comments() {
5 // spaces after line comments give errors
6 /*
7 in block comments
8 too
9 */
10}
11
12fn main() {
13 var := 'error about the spaces right there'
14 no_err := "inside multi line strings it's fine.
15but not after"
16}
17