I'm on the Godot 4.0 Beta, so maybe that's why. But there's not really much other information.
tile.gd :
extends Node2D
@export var block : bool = false
actor.gd :
extends "res://tile.gd"
block = true
player.gd :
extends "res://actors/actor.gd"
Here's the Error I get:
Error at (0, 0): Could not resolve super class inheritance from "res://actors/actor.gd".