blob: d34dfba49b32efcf74ce8a1e1ffba64f993fc410 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
import "dart:async" as asy;
static method main() dynamic async /* emittedValueType= dynamic */ {
core::bool b = (() core::bool => true)(){() core::bool};
(dynamic _) core::int? {
if(b)
return 42;
};
(dynamic _) asy::Future<core::int?> async /* emittedValueType= core::int? */ {
if(b)
return 42;
};
}