virtualx-engine/modules/gdscript/tests/scripts/parser/features/if_after_lambda.gd

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

8 lines
139 B
GDScript3
Raw Normal View History

# https://github.com/godotengine/godot/issues/61231
func test():
var my_lambda = func():
print("hello")
if 0 == 0:
my_lambda.call()