summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/match_test_null.gd
blob: 9bb57b68eec1b5932d705b6d8f580970e7fdd698 (plain)
1
2
3
4
5
6
func test():
	match null:
		null:
			print('null matched')
		_:
			pass