diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/inputs/using.yue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/inputs/using.yue b/spec/inputs/using.yue index fe0a433..9944b60 100644 --- a/spec/inputs/using.yue +++ b/spec/inputs/using.yue | |||
@@ -13,10 +13,10 @@ _ = (a,b,c using a,b,c) -> | |||
13 | a,b,c = 1,2,3 | 13 | a,b,c = 1,2,3 |
14 | world = 12321 | 14 | world = 12321 |
15 | 15 | ||
16 | (a,e,f using a,b,c, hello) -> | 16 | _ = (a,e,f using a,b,c, hello) -> |
17 | a,b,c = 1,2,3 | 17 | a,b,c = 1,2,3 |
18 | hello = 12321 | 18 | hello = 12321 |
19 | world = "yeah" | 19 | world = "yeah" |
20 | 20 | ||
21 | 21 | _ = (using nil) -> | |
22 | 22 | hello or= 2 | |