mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 11:35:12 +07:00
GitOrigin-RevId: 8b2286a3f50d7b0d00ebbb0befc9811a80f7b304
12 lines
134 B
Python
12 lines
134 B
Python
class A:
|
|
def __init__(self):
|
|
self.x = 1
|
|
|
|
async def y(self):
|
|
pass
|
|
|
|
|
|
async def f():
|
|
a = A()
|
|
await a.y()
|