godot/modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.gd

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

5 lines
92 B
GDScript3
Raw Normal View History

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