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