mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
15 lines
304 B
Python
15 lines
304 B
Python
from __future__ import annotations
|
|
|
|
|
|
# Test case for https://github.com/astral-sh/ruff/issues/1552
|
|
def f():
|
|
x = 0
|
|
list()[x:]
|
|
|
|
|
|
# Test case for https://github.com/astral-sh/ruff/issues/2603
|
|
def f():
|
|
KeyTupleT = tuple[str, ...]
|
|
|
|
keys_checked: set[KeyTupleT] = set()
|
|
return keys_checked
|