blob: 060b5cf7be001b7bd2a4437e06b49e672b03fe9e [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::num>[3, 4.0];
};
core::Iterable<core::num> g = f(){() core::Iterable<core::num>};
}
static method main() dynamic {}