diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/inputs/attrib.moon | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/spec/inputs/attrib.moon b/spec/inputs/attrib.moon index a5fa376..bc1e67e 100644 --- a/spec/inputs/attrib.moon +++ b/spec/inputs/attrib.moon | |||
@@ -1,6 +1,9 @@ | |||
1 | do | 1 | do |
2 | close a = setmetatable {},__close:=> print "closed" | 2 | close a, b = setmetatable {},__close:=> print "closed" |
3 | const a = 123 | 3 | const c, d = 123, 'abc' |
4 | |||
5 | close a, b | ||
6 | const c, d | ||
4 | 7 | ||
5 | do | 8 | do |
6 | close v = if flag | 9 | close v = if flag |