summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/warnings/unused_variable.gd
blob: 013a2e4bebf0b05677c25ce00ab2224252c91aae (plain)
1
2
3
4
func test():
	var unused = "not used"

	var _unused = "not used, but no warning since the variable name starts with an underscore"