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

Unified Diff: tests/language_strong/super_operator_index3_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
Index: tests/language_strong/super_operator_index3_test.dart
diff --git a/tests/language_strong/super_operator_index3_test.dart b/tests/language_strong/super_operator_index3_test.dart
index 405bfc1021c6eddbbc158d4ffca50bfe16c24cba..f15330770ec2031fafc460e191cbeb1f44a7d06e 100644
--- a/tests/language_strong/super_operator_index3_test.dart
+++ b/tests/language_strong/super_operator_index3_test.dart
@@ -7,7 +7,7 @@
import "package:expect/expect.dart";
class A {
- var indexField = new List(2);
+ var indexField = new List<int>(2);
operator[]=(index, value) { indexField[index] = value; }
}
« no previous file with comments | « tests/language_strong/super_operator_index2_test.dart ('k') | tests/language_strong/super_operator_index4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698