godot/modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd

# https://github.com/godotengine/godot/issues/43221
extends Node

func test():
	name = "Node"
	print(self["name"])
	self["name"] = "Changed"
	print(name)