summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/constant_used_as_function.gd
blob: 0ad2337c1542f901f9362e111b8229ca17e489b0 (plain)
1
2
3
4
5
const CONSTANT = 25


func test():
	CONSTANT(123)