Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Script Editor gives inappropriate "unreachable code detected" warning #71715

Closed
HauntedBees opened this issue Jan 20, 2023 · 0 comments · Fixed by #72330
Closed

Script Editor gives inappropriate "unreachable code detected" warning #71715

HauntedBees opened this issue Jan 20, 2023 · 0 comments · Fixed by #72330

Comments

@HauntedBees
Copy link

Godot version

v4.0.beta13.official [caacade]

System information

Windows 8.1

Issue description

The Unreachable code (statement after return) in function 'function_name()' warning is given for functions that do not have unreachable code. The same code does not give this warning in v3.5.stable.official [991bb6a].

Steps to reproduce

func warning(i: int) -> void:
  if i == 0:
    pass
  elif i == 1:
    return
  else:
    return
  print("yeah")

Removing either the elif or the else removes the warning.

Minimal reproduction project

N/A; code in reproduction steps can be placed in any blank gdscript file to trigger the error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Status: Todo
Development

Successfully merging a pull request may close this issue.

2 participants