blob: 460c8a50ec5810da790bce0d0a81621f77a0fe83 [file] [log] [blame]
library test;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
static method main() dynamic {
() asy::Stream<core::num> f = () asy::Stream<core::num> async* {
yield 1;
asy::Stream<core::double> s;
yield* s;
};
asy::Stream<core::num> g = f.call();
asy::Stream<core::int> h = f.call();
}