mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 00:21:24 +00:00
8 lines
136 B
GDScript3
8 lines
136 B
GDScript3
|
|
# See https://github.com/godotengine/godot/issues/41066.
|
||
|
|
|
||
|
|
func f(p, ): ## <-- no errors
|
||
|
|
print(p)
|
||
|
|
|
||
|
|
func test():
|
||
|
|
f(0, ) ## <-- no error
|