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

func test():
	pass