bolt/test/checker/nested_vars_reaching_parent_scope.bolt

13 lines
148 B
Text
Raw Permalink Normal View History

2023-06-12 16:54:41 +02:00
# Testing whether nested variable declarations work
let id x.
let foo = x
return foo
@:Int id 1
@:Bool id True
@:Int id 1
@:String id "foo"