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