mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 581c80229ca4f9e3a1faab057d0a3c689e2ce96e
9 lines
106 B
Python
9 lines
106 B
Python
class Empty:
|
|
__match_args__ = ()
|
|
|
|
|
|
def f(obj):
|
|
match obj:
|
|
case Empty(1):
|
|
pass
|