88021fd67a
This change was already reviewed at https://dart-review.googlesource.com/c/sdk/+/197586. Bugfix is in the separate change: https://dart-review.googlesource.com/c/sdk/+/199365. TEST=ci Issue: https://github.com/dart-lang/sdk/issues/45340 Change-Id: I4311909e4893af53e88895512f03d3ef84c6bc5f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/199366 Commit-Queue: Alexander Markov <alexmarkov@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
10 lines
314 B
Plaintext
10 lines
314 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){(core::num*) →* core::int*}){((core::int*) →* void) →* void};
|
|
}
|
|
static method main() → dynamic {}
|