godot/modules/gdscript/tests/scripts/parser/warnings/deprecated_operators.gd

func test():
	# `and` should be used instead.
	if true && true:
		pass

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