summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd
blob: 55be021a9060822ef2aae533f63ddf05202bc91b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# https://github.com/godotengine/godot/issues/60145

func test():
	match "abc":
		&"abc":
			print("String matched StringName")
		_:
			print("no match")

	match &"abc":
		"abc":
			print("StringName matched String")
		_:
			print("no match")