PlutoLang / Pluto

A superset of Lua 5.4 with a focus on general-purpose programming.
https://pluto-lang.org/docs/Introduction
MIT License
338 stars 20 forks source link

unreachable-code false-positive #839

Closed Sainan closed 2 months ago

Sainan commented 2 months ago
if false and true then
else
end
index.pluto:2: warning: unreachable code [unreachable-code]
    2 | else
      | ^^^^ here: the condition in the if block is always truthy, hence this else block is unreachable.