| library /*isLegacy*/; |
| import self as self; |
| import "dart:async" as asy; |
| |
| static method returnFutureOfVoid() → asy::Future<void>* async /* futureValueType= void */ {} |
| static method returnVoid() → void {} |
| static method returnVoidAsync() → void async /* futureValueType= void */ {} |
| static method main() → dynamic async /* futureValueType= dynamic */ { |
| await self::returnVoid() /* runtimeCheckType= asy::Future<void>* */ ; |
| await self::returnFutureOfVoid(); |
| await self::returnVoidAsync() /* runtimeCheckType= asy::Future<void>* */ ; |
| } |