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

Unified Diff: tests/language_strong/lazy_static7_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_static6_src.dart ('k') | tests/language_strong/super_operator_index2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/lazy_static7_test.dart
diff --git a/tests/language_strong/lazy_static7_test.dart b/tests/language_strong/lazy_static7_test.dart
index ff74912259a11aa65a3e9499f4126300a07b489d..b26ed7318828b9a8a46cd6140c0286fcbcae4aad 100644
--- a/tests/language_strong/lazy_static7_test.dart
+++ b/tests/language_strong/lazy_static7_test.dart
@@ -5,7 +5,7 @@
import "package:expect/expect.dart";
var sideEffect = 0;
-var x = (() { sideEffect++; return 499; })();
+int x = (() { sideEffect++; return 499; })();
main() {
if (new DateTime.now().day >= -1) {
« no previous file with comments | « tests/language_strong/lazy_static6_src.dart ('k') | tests/language_strong/super_operator_index2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698