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

Unified Diff: pkg/front_end/testcases/inference/generic_methods_do_not_infer_invalid_override_of_generic_method.dart

Issue 2865403007: Get rid of promotedType=none annotations (Closed)
Patch Set: Created 3 years, 7 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: pkg/front_end/testcases/inference/generic_methods_do_not_infer_invalid_override_of_generic_method.dart
diff --git a/pkg/front_end/testcases/inference/generic_methods_do_not_infer_invalid_override_of_generic_method.dart b/pkg/front_end/testcases/inference/generic_methods_do_not_infer_invalid_override_of_generic_method.dart
index c6ce8f0e25cf7b990424c8b96998e9280f06eba9..4364e7fb6a2dd1a3c1f389de01f018b22e15f224 100644
--- a/pkg/front_end/testcases/inference/generic_methods_do_not_infer_invalid_override_of_generic_method.dart
+++ b/pkg/front_end/testcases/inference/generic_methods_do_not_infer_invalid_override_of_generic_method.dart
@@ -6,16 +6,16 @@
library test;
class C {
- T m<T>(T x) => /*@promotedType=none*/ x;
+ T m<T>(T x) => x;
}
class D extends C {
-/*error:INVALID_METHOD_OVERRIDE*/ m(x) => /*@promotedType=none*/ x;
+/*error:INVALID_METHOD_OVERRIDE*/ m(x) => x;
}
main() {
int y = /*info:DYNAMIC_CAST*/ new D()
. /*error:WRONG_NUMBER_OF_TYPE_ARGUMENTS_METHOD*/ /*@target=D::m*/ m<int>(
42);
- print(/*@promotedType=none*/ y);
+ print(y);
}

Powered by Google App Engine
This is Rietveld 408576698