summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/enum_string_value.gd
blob: cd9b8fabc472518751c1b52a65f9ad126b1cf0cf (plain)
1
2
3
4
5
6
7
enum Size {
	# Error here. Enum values must be integers.
	S = "hello",
}

func test():
	pass