Sign in
◑
Theme
fuchsia
/
third_party
/
github.com
/
psf
/
black
/
aef52e00c618f8203548fa6d1512eb49bf60f411
/
.
/
tests
/
data
/
miscellaneous
/
pattern_matching_invalid.py
blob: 22b5b94c0a46a78e9cc96c7444d902a05e16df71 [
file
]
# First match, no errors
match something
:
case bla
():
pass
# Problem on line 10
match invalid_case
:
case valid_case
:
pass
case a
:=
b
:
pass
case valid_case
:
pass
# No problems either
match something
:
case bla
():
pass