summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/warnings/deprecated_operators.gd
blob: f72b10213f90abc2b319179f7e58908582c04988 (plain)
1
2
3
4
5
6
7
8
func test():
	# `and` should be used instead.
	if true && true:
		pass

	# `or` should be used instead.
	if false || true:
		pass