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

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

Powered by Google App Engine
This is Rietveld 408576698