blob: 63da9b901cb2602717a278fafc7ca39c7184dd20 [file] [log] [blame]
library test;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
import "dart:async";
static method foo(() asy::Stream<core::int> values) void {}
static method main() void {
self::foo(() asy::Stream<core::int> async* /* emittedValueType= core::int */ {
yield 0;
yield 1;
});
}