summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.gd
blob: b8c0b7a8d3ea348c4bf3865f469d2e367dc3fb8e (plain)
1
2
3
func test():
	# Error here. Array indices must be integers.
	print([0, 1][true])