when i type to use a variable in match.. case (after the case keyword) it thinks it is a new variable created for the default case for example :
v = 123
match some_other_variable:
case v:
code(v)
case 321:
cde(321)
this here gives me this errors :
Irrefutable pattern is allowed only for the last case statement
and the code under the 2nd case is unreachable