summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd')
-rw-r--r--modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd b/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd
deleted file mode 100644
index 55be021a90..0000000000
--- a/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd
+++ /dev/null
@@ -1,14 +0,0 @@
-# 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")