ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F704.py
2023-09-20 08:38:27 +02:00

11 lines
86 B
Python

def f() -> int:
yield 1
class Foo:
yield 2
yield 3
yield from 3
await f()