library test /*isNonNullableByDefault*/; | |
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; | |
}); | |
} |