mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 22:31:47 +00:00
16 lines
186 B
Python
16 lines
186 B
Python
import typing
|
|
|
|
|
|
# Errors
|
|
|
|
@typing.no_type_check
|
|
class C:
|
|
def f(self, arg: "B") -> "S":
|
|
x: "B" = 1
|
|
|
|
|
|
# No errors
|
|
|
|
@typing.no_type_check
|
|
def f(arg: "A") -> "R":
|
|
x: "A" = 1
|