summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdscript/tests/scripts/parser')
-rw-r--r--modules/gdscript/tests/scripts/parser/features/super_class_check.gd13
-rw-r--r--modules/gdscript/tests/scripts/parser/features/super_class_check.out1
2 files changed, 14 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/super_class_check.gd b/modules/gdscript/tests/scripts/parser/features/super_class_check.gd
new file mode 100644
index 0000000000..edfc45a8d8
--- /dev/null
+++ b/modules/gdscript/tests/scripts/parser/features/super_class_check.gd
@@ -0,0 +1,13 @@
+# https://github.com/godotengine/godot/issues/71994
+
+func test():
+ pass
+
+class A extends RefCounted:
+ pass
+
+class B extends A:
+ # Parsing `duplicate()` here would throw this error:
+ # Parse Error: The function signature doesn't match the parent. Parent signature is "duplicate(bool = default) -> Resource".
+ func duplicate():
+ pass
diff --git a/modules/gdscript/tests/scripts/parser/features/super_class_check.out b/modules/gdscript/tests/scripts/parser/features/super_class_check.out
new file mode 100644
index 0000000000..d73c5eb7cd
--- /dev/null
+++ b/modules/gdscript/tests/scripts/parser/features/super_class_check.out
@@ -0,0 +1 @@
+GDTEST_OK