Files
engine/modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
68 B
GDScript
Raw Normal View History

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