diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/super.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/features/super.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/super.gd b/modules/gdscript/tests/scripts/parser/features/super.gd index f5ae2a74a7..33accd92a9 100644 --- a/modules/gdscript/tests/scripts/parser/features/super.gd +++ b/modules/gdscript/tests/scripts/parser/features/super.gd @@ -36,6 +36,7 @@ class SayNothing extends Say: print("howdy, see above") func say(name): + @warning_ignore("unsafe_call_argument") super(name + " super'd") print(prefix, " say nothing... or not? ", name) |