virtualx-engine/modules/gdscript/tests/scripts/analyzer/features/lookup_class_external.notest.gd

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

16 lines
193 B
GDScript3
Raw Normal View History

class A:
const TARGET: = "wrong"
class B:
const TARGET: = "wrong"
const WAITING: = "godot"
class D extends C:
pass
class C:
const TARGET: = "right"
class E extends A.B.D:
pass