# This same tests the type checker's ability to validate# types related to coroutines (and async/await) statements.fromtypingimportGenerator,Any,Optionalasyncdefcoroutine1():return1a=coroutine1()# This should generate an error because 'await'# can't be used outside of an async function.awaita