()
| 938 | await a() |
| 939 | |
| 940 | async def b(): |
| 941 | self.assertIsNone(coro_b.cr_await) |
| 942 | await c() |
| 943 | self.assertIsNone(coro_b.cr_await) |
| 944 | |
| 945 | coro_b = b() |
| 946 | self.assertEqual(inspect.getcoroutinestate(coro_b), inspect.CORO_CREATED) |
no test coverage detected