forked from VimPlug/jedi
20 lines
219 B
Python
20 lines
219 B
Python
"""
|
|
Tests for all async use cases.
|
|
|
|
Currently we're not supporting completion of them, but they should at least not
|
|
raise errors or return strange results.
|
|
"""
|
|
|
|
|
|
async def x():
|
|
await 3
|
|
|
|
#?
|
|
x()
|
|
|
|
a = await x()
|
|
#?
|
|
a
|
|
|
|
|