summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/warnings/integer_division.gd
blob: 611742552864db10fd3f5d93307863f167e33265 (plain)
1
2
3
4
5
6
7
8
9
10
func test():
	# This should emit a warning.
	var __ = 5 / 2

	# These should not emit warnings.
	__ = float(5) / 2
	__ = 5 / float(2)
	__ = 5.0 / 2
	__ = 5 / 2.0
	__ = 5.0 / 2.0