20e4c74f7f
Change-Id: I48c43858094e2b7264a15be05238bfc3dadd5ecb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/108264 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
10 lines
248 B
Plaintext
10 lines
248 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 {}
|