summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/features/class_from_parent.gd
blob: 7c846c59bd015a24a315e1dee8235db06fbf7b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class A:
	var x = 3

class B:
	var x = 4

class C:
	var x = 5

class Test:
	var a = A.new()
	var b: B = B.new()
	var c := C.new()

func test():
	var test_instance := Test.new()
	prints(test_instance.a.x)
	prints(test_instance.b.x)
	prints(test_instance.c.x)