summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/if_after_lambda.gd
blob: f5e26ab1abc818462f7908f7e81f609d6a7850f2 (plain)
1
2
3
4
5
6
7
# https://github.com/godotengine/godot/issues/61231

func test():
	var my_lambda = func():
		print("hello")
	if 0 == 0:
		my_lambda.call()