| Index: pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
|
| diff --git a/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect b/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
|
| index 1f652f3e86e795079b62e0443734a19fb9578a28..e8e5172104ec58a3821680ae0cadb7646c94bc73 100644
|
| --- a/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
|
| +++ b/pkg/kernel/testcases/closures/uncaptured_for_in_loop.dart.expect
|
| @@ -8,7 +8,7 @@ static method main() → dynamic {
|
| for (core::int i in self::numbers) {
|
| final Vector #context = MakeVector(2);
|
| #context[1] = i;
|
| - closures.add(MakeClosure<() → dynamic>(self::closure#main#function, #context));
|
| + closures.add(MakeClosure<() → core::int>(self::closure#main#function, #context));
|
| }
|
| core::int sum = 0;
|
| for (core::Function f in closures) {
|
| @@ -19,6 +19,6 @@ static method main() → dynamic {
|
| throw core::Exception::•("Unexpected sum = ${sum} != ${expectedSum}");
|
| }
|
| }
|
| -static method closure#main#function(Vector #contextParameter) → dynamic {
|
| +static method closure#main#function(Vector #contextParameter) → core::int {
|
| return #contextParameter[1];
|
| }
|
|
|