godot/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.gd

extends Node

class Inner extends RefCounted:
	@onready var nope = 0

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