Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Unified Diff: tests/language_strong/closure_in_field_initializer_test.dart

Issue 2779843004: Fix top-level inference errors for most of the newly failing tests. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language_strong/bailout4_test.dart ('k') | tests/language_strong/deferred_not_loaded_check_lib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/closure_in_field_initializer_test.dart
diff --git a/tests/language_strong/closure_in_field_initializer_test.dart b/tests/language_strong/closure_in_field_initializer_test.dart
index bf0198aa4b3ae78e6ad50f19e4e08a573daf80d4..34cc0eea06b91016d461b886eac638b9856e004b 100644
--- a/tests/language_strong/closure_in_field_initializer_test.dart
+++ b/tests/language_strong/closure_in_field_initializer_test.dart
@@ -6,7 +6,7 @@ import "package:expect/expect.dart";
class Foo {
var closures = {
- 'a': (x, y) => x + y
+ 'a': (int x, int y) => x + y
};
}
« no previous file with comments | « tests/language_strong/bailout4_test.dart ('k') | tests/language_strong/deferred_not_loaded_check_lib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698