godot/modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd
2023-04-24 17:00:35 +02:00

10 lines
68 B
GDScript

# GH-75870
var A = 1
class B extends A:
pass
func test():
pass