summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node.gd
blob: e78131526657c78f247d410285a09e7e59bb3e4d (plain)
1
2
3
4
5
6
extends RefCounted

@onready var nope := 0

func test():
	print("Cannot use @onready without a Node base")