Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/analyzer/warnings/lambda_shadowing_arg.gd
10286 views
var shadow: int

func test():
	var lambda := func(shadow: String) -> void:
		print(shadow)
	lambda.call('shadow')