godot/modules/gdscript/tests/scripts/analyzer/features/class_from_parent.gd

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

20 lines
258 B
GDScript3
Raw Normal View History

2021-10-12 14:49:06 +00:00
class A:
var x = 3
2021-10-12 14:49:06 +00:00
class B:
var x = 4
2021-10-12 14:49:06 +00:00
class C:
var x = 5
2021-10-12 14:49:06 +00:00
class Test:
var a = A.new()
var b: B = B.new()
var c := C.new()
2021-10-12 14:49:06 +00:00
func test():
var test_instance := Test.new()
prints(test_instance.a.x)
prints(test_instance.b.x)
prints(test_instance.c.x)