If all paths of an if/else return code below it is unreachable ```lua if true then return false elseif true and true return false else return false end return true -- unreachable code ```