summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd
blob: f9a8b23b92b26a7fc518a103a8b402cd4aa02b96 (plain)
1
2
3
4
5
6
7
8
# https://github.com/godotengine/godot/issues/43221
extends Node

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