blob: d55bbde50099a5c50c3c3f461e15f5bc82ec4a3e [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};
}