summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/features/preload_cyclic_reference_a.notest.gd
blob: 7a6035ded18d3b64a1f3277299d0bd277e336a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const B = preload("preload_cyclic_reference_b.notest.gd")

const WAITING_FOR = "godot"

static func test_cyclic_reference():
	B.test_cyclic_reference()

static func test_cyclic_reference_2():
	B.test_cyclic_reference_2()

static func test_cyclic_reference_3():
	B.test_cyclic_reference_3()