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