Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.gd
10286 views
func test():
	var lambda := func(unused: Variant) -> void:
		pass
	lambda.call("something")