blob: 0a97087167fe4869ac2271c6173dd2245d6223c6 [file] [log] [blame]
library test;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
import "dart:async";
static method main() dynamic async /* emittedValueType= dynamic */ {
() asy::Stream<Null> f = () asy::Stream<Null> async* /* emittedValueType= Null */ {
yield null;
};
asy::Stream<dynamic> y = f(){() asy::Stream<Null>};
asy::Stream<core::String?> z = f(){() asy::Stream<Null>};
core::String? s = await f(){() asy::Stream<Null>}.{asy::Stream::first}{asy::Future<Null>};
}