You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a: Final=1A=Literal[a]
# okay, because `a` is always 1b: a=a# okay, because `a` is always 1classC ...
c: Final=C()
d: c=c# error# bad because it's ambigious if the `c` here means instance `C` or `type[C]`, need to use `TypeOf[c]`
use case
The text was updated successfully, but these errors were encountered: