blob: 707e4532ccd0fa6592d2443a2c911d54d4196d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# https://github.com/godotengine/godot/pull/61666
func test():
var dict := {"key": "value"}
match dict:
{"key": var value}:
print(value) # used, no warning
match dict:
{"key": var value}:
pass # unused, warning
match dict:
{"key": var _value}:
pass # unused, suppressed warning from underscore
|