Is it expected behaviour that I can't type annotate variable declarations in global scope? Example: ``` julia julia> foo::Float = 0.1 foo not defined julia> function bar() foo::Float = 0.1 end julia> bar() 0.1 ```