adding a test for trailing-comments-preceding-outdents

This commit is contained in:
Jeremy Ashkenas 2010-06-27 13:02:47 -04:00
parent ec570c46bf
commit 7e2eb997a8
1 changed files with 9 additions and 0 deletions

View File

@ -86,3 +86,12 @@ result: switch 'z'
when 'z' then 7
# comment
ok result is 7
# Trailing-line comment before an outdent.
func: ->
if true
true # comment
7
ok func() is 7