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

Unified Diff: tests/language_strong/inferrer_closure_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/generic_field_mixin5_test.dart ('k') | tests/language_strong/language_strong.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/inferrer_closure_test.dart
diff --git a/tests/language_strong/inferrer_closure_test.dart b/tests/language_strong/inferrer_closure_test.dart
index 0106ce6079331db97231207b0591c4a3b847e21c..6841bb4efc1ac077641da5933c1a7dfaa9108d84 100644
--- a/tests/language_strong/inferrer_closure_test.dart
+++ b/tests/language_strong/inferrer_closure_test.dart
@@ -5,7 +5,7 @@
// Regression test for dart2js that used to not see a closure could be
// invoked through a getter access followed by an invocation.
-var closure = (a) => a.toString();
+var closure = (Object a) => a.toString();
get foo => closure;
« no previous file with comments | « tests/language_strong/generic_field_mixin5_test.dart ('k') | tests/language_strong/language_strong.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698