godot/modules/gdscript/tests/scripts/runtime/features/match_test_null.gd

func test():
	match null:
		null:
			print('null matched')
		_:
			pass