macro(match): add golden for type-guard minimal (no Box); script to validate; all pass
This commit is contained in:
7
apps/tests/macro/match/guard_type_basic_min.nyash
Normal file
7
apps/tests/macro/match/guard_type_basic_min.nyash
Normal file
@ -0,0 +1,7 @@
|
||||
local x = "hello"
|
||||
local r = match x {
|
||||
StringBox(s) if s.length() > 3 => 1
|
||||
_ => 0
|
||||
}
|
||||
print(r)
|
||||
|
||||
Reference in New Issue
Block a user