julia-vscode / StaticLint.jl

Static Code Analysis for Julia
Other
145 stars 28 forks source link

False positive when using local keyword #349

Open baggepinnen opened 2 years ago

baggepinnen commented 2 years ago

The following is a valid piece of julia code that should not be warned against

function fun()
    local inner_fun
    let
        inner_fun(x) = x
    end
end

image