blob: a7024fa92945043f8d56a835ab902136bd670595 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method main() 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.call();
core::Iterable<core::int> h = f.call();
}