10 lines
244 B
Plaintext
10 lines
244 B
Plaintext
library test;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method f() → dynamic {
|
|
core::List<core::int> o;
|
|
o.{core::Iterable::forEach}((core::int i) → core::int => i.{core::num::+}(1));
|
|
}
|
|
static method main() → dynamic {}
|