mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
GDScript: Fix if after lambda being seen as ternary
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
# https://github.com/godotengine/godot/issues/61231
|
||||
|
||||
func test():
|
||||
var my_lambda = func():
|
||||
print("hello")
|
||||
if 0 == 0:
|
||||
my_lambda.call()
|
||||
Reference in New Issue
Block a user