blob: c66377e359c68e337293fe07da5b5d8fa203b7e7 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method test(core::List<core::int> o) void {
core::int y = o.{core::Iterable::fold}<core::int>(0, (core::int x, core::int y) core::int => x.{core::num::+}(y){(core::num) core::int}){(core::int, (core::int, core::int) core::int) core::int};
core::int z = o.{core::Iterable::fold}<core::int>(0, (core::int x, core::int y) core::int => x.{core::num::+}(y){(core::num) core::int}){(core::int, (core::int, core::int) core::int) core::int};
y = z;
}
static method functionExpressionInvocation(core::List<core::int> o) void {
core::int y = o.{core::Iterable::fold}{<T extends core::Object? = dynamic>(T%, (T%, core::int) T%) T%}<core::int>(0, (core::int x, core::int y) core::int => x.{core::num::+}(y){(core::num) core::int}){(core::int, (core::int, core::int) core::int) core::int};
core::int z = o.{core::Iterable::fold}{<T extends core::Object? = dynamic>(T%, (T%, core::int) T%) T%}<core::int>(0, (core::int x, core::int y) core::int => x.{core::num::+}(y){(core::num) core::int}){(core::int, (core::int, core::int) core::int) core::int};
y = z;
}
static method main() dynamic {}