blob: a5fe4f6a8d0384757d0c15f913d2499be8da4c9d [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method main() dynamic {
() core::Iterable<core::Null> f = () core::Iterable<core::Null> sync* {
yield null;
};
core::Iterable<dynamic> y = f.call();
core::Iterable<core::String> z = f.call();
core::String s = f.call().{core::Iterable::first};
}