diff options
Diffstat (limited to 'spec/inputs/global.yue')
-rw-r--r-- | spec/inputs/global.yue | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/inputs/global.yue b/spec/inputs/global.yue index 59cf764..4e3b8aa 100644 --- a/spec/inputs/global.yue +++ b/spec/inputs/global.yue | |||
@@ -75,3 +75,16 @@ do | |||
75 | 75 | ||
76 | h = 100 | 76 | h = 100 |
77 | 77 | ||
78 | do | ||
79 | global x = y | ||
80 | global ^ | ||
81 | foobar = "all lowercase" | ||
82 | FooBar = "pascal case" | ||
83 | FOOBAR = "all uppercase" | ||
84 | |||
85 | do | ||
86 | global const class A | ||
87 | global const Flag = 1 | ||
88 | global const const, x, y = "const", 1, 2 | ||
89 | global const math, table | ||
90 | |||