blob: e71114ad539ff98007176bc548171c4157795e5a [file] [log] [blame]
library test /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
static method test() dynamic {
() core::Iterable<core::num> f = () core::Iterable<core::num> sync* {
yield 1;
yield*<core::num>[3, 4.0];
};
core::Iterable<core::num> g = f(){() core::Iterable<core::num>};
}
static method main() dynamic {}