diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd')
| -rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd b/modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd new file mode 100644 index 0000000000..6574d4cf31 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd @@ -0,0 +1,9 @@ +# GH-75870 + +var A = 1 + +class B extends A: + pass + +func test(): + pass |
