mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
23 lines
214 B
Python
23 lines
214 B
Python
def func():
|
|
pass
|
|
|
|
def func():
|
|
pass
|
|
|
|
def func():
|
|
return
|
|
|
|
def func():
|
|
return 1
|
|
|
|
def func():
|
|
return 1
|
|
return "unreachable"
|
|
|
|
def func():
|
|
i = 0
|
|
|
|
def func():
|
|
i = 0
|
|
i += 2
|
|
return i
|