1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00
Files
godot/modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.gd
2023-01-06 16:38:22 +02:00

5 lines
81 B
GDScript

func test():
var lambda := func(unused: Variant) -> void:
pass
lambda.call()