summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/warnings/void_assignment.gd
blob: b4a42b3e3d70fca615b9eb34b191c9c3ef25d2a1 (plain)
1
2
3
4
5
6
func i_return_void() -> void:
	return


func test():
	var __ = i_return_void()