mirror of
https://github.com/astral-sh/ruff
synced 2026-01-21 13:30:49 -05:00
6 lines
135 B
Python
6 lines
135 B
Python
def function_with_nesting():
|
|
"""Foo bar documentation."""
|
|
@overload
|
|
def nested_overloaded_func(a: int) -> str:
|
|
...
|