mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
5 lines
135 B
Python
5 lines
135 B
Python
def function_with_nesting():
|
|
"""Foo bar documentation."""
|
|
@overload
|
|
def nested_overloaded_func(a: int) -> str:
|
|
...
|