summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/warnings/unused_constant.gd
blob: 3d355197e1a38a8091b587b8438a2440fe9d6380 (plain)
1
2
3
4
func test():
	const UNUSED = "not used"

	const _UNUSED = "not used, but no warning since the constant name starts with an underscore"