julia-vscode / StaticLint.jl

Static Code Analysis for Julia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

False positive when using local keyword

baggepinnen opened this issue · comments

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