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

Unified Diff: tests/language_strong/lazy_static2_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/language_strong.status ('k') | tests/language_strong/lazy_static3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/lazy_static2_test.dart
diff --git a/tests/language_strong/lazy_static2_test.dart b/tests/language_strong/lazy_static2_test.dart
index 72010f0050b78434054cb50d730d4d5ef8167c5f..5a0ce9f462a04b4d33b6f5e9b40bb078472c8572 100644
--- a/tests/language_strong/lazy_static2_test.dart
+++ b/tests/language_strong/lazy_static2_test.dart
@@ -4,7 +4,7 @@
import "package:expect/expect.dart";
-final x = (t) => t + 1;
+final x = (int t) => t + 1;
main() {
Expect.equals(499, x(498));
« no previous file with comments | « tests/language_strong/language_strong.status ('k') | tests/language_strong/lazy_static3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698