bolt/test/checker/nested_vars_reaching_parent_scope.bolt

12 lines
148 B
Text

# 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"