godot/modules/gdscript/tests/scripts/parser/warnings/void_assignment.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
79 B
GDScript3
Raw Normal View History

func i_return_void() -> void:
return
func test():
var __ = i_return_void()