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

Unified Diff: tests/language_strong/lazy_static6_src.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_static5_test.dart ('k') | tests/language_strong/lazy_static7_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/lazy_static6_src.dart
diff --git a/tests/language_strong/lazy_static6_src.dart b/tests/language_strong/lazy_static6_src.dart
index c17f7dadd5c999413f0cbeb07296af46ba8a0669..78f7a8380aa43d4e502727c30be74b30591921f9 100644
--- a/tests/language_strong/lazy_static6_src.dart
+++ b/tests/language_strong/lazy_static6_src.dart
@@ -20,7 +20,7 @@
*/
part of lazy_static6_test;
-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_static5_test.dart ('k') | tests/language_strong/lazy_static7_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698