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

Unified Diff: tests/language_strong/super_operator_index2_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_static7_test.dart ('k') | tests/language_strong/super_operator_index3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/super_operator_index2_test.dart
diff --git a/tests/language_strong/super_operator_index2_test.dart b/tests/language_strong/super_operator_index2_test.dart
index 29ff893068247e332c349afed796f42aed18f04b..f540b4f127fe9cbfe46b6038f2f248583889c39e 100644
--- a/tests/language_strong/super_operator_index2_test.dart
+++ b/tests/language_strong/super_operator_index2_test.dart
@@ -7,7 +7,7 @@
import "package:expect/expect.dart";
class A {
- var map = new Map();
+ var map = new Map<int, int>();
operator[]=(a, b) { map[a] = b; }
operator[](a) => map[a];
}
« no previous file with comments | « tests/language_strong/lazy_static7_test.dart ('k') | tests/language_strong/super_operator_index3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698