match_test_null.gd 72 B

123456
  1. func test():
  2. match null:
  3. null:
  4. print('null matched')
  5. _:
  6. pass