blob: 57d4fe9a6d5177aee03c66084bfca51d822c9722 [file]
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* {
yield 0;
yield 1;
});
}