()
| 945 | await a() |
| 946 | |
| 947 | async def b(): |
| 948 | self.assertIsNone(coro_b.cr_await) |
| 949 | await c() |
| 950 | self.assertIsNone(coro_b.cr_await) |
| 951 | |
| 952 | coro_b = b() |
| 953 | self.assertEqual(inspect.getcoroutinestate(coro_b), inspect.CORO_CREATED) |
no test coverage detected