blob: cd20a6130fd01f3ad2c1cfd9a6e6174e60bdc715 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
import "dart:async" as asy;
static method method(core::Iterable<core::int> iterable) dynamic {
for (core::int i in iterable) {
core::print(i);
}
}
static method asyncMethod(asy::Stream<core::int> stream) dynamic async /* futureValueType= dynamic */ {
await for (core::int i in stream) {
core::print(i);
}
}