Files
openide/python/testData/inspections/UnresolvedRefCreateAsyncFunction_after.py
2023-12-05 13:31:18 +00:00

7 lines
78 B
Python

async def ref(s, t):
pass
async def f():
s = 3
await ref(s, t=1)