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

Unified Diff: test/checker/inferred_type_test.dart

Issue 1296723002: Cleanup InferableOverride (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Fix format Created 5 years, 4 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 | « test/checker/checker_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/checker/inferred_type_test.dart
diff --git a/test/checker/inferred_type_test.dart b/test/checker/inferred_type_test.dart
index 46d4bfb7fc71d0f6ed5a5e4c225d8459c7a68bbd..edf73a3fa270c10b433c165bdc6e8cc3987234c7 100644
--- a/test/checker/inferred_type_test.dart
+++ b/test/checker/inferred_type_test.dart
@@ -737,7 +737,7 @@ void main() {
}
class B extends A {
- /*severe:InferableOverride*/get x => 3;
+ /*severe:InvalidMethodOverride*/get x => 3;
}
foo() {
@@ -777,7 +777,7 @@ void main() {
}
class B implements A {
- /*severe:InferableOverride*/get x => 3;
+ /*severe:InvalidMethodOverride*/get x => 3;
}
foo() {
@@ -841,7 +841,7 @@ void main() {
}
class B implements A<int> {
- /*severe:InferableOverride*/get x => 3;
+ /*severe:InvalidMethodOverride*/get x => 3;
}
foo() {
« no previous file with comments | « test/checker/checker_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698