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

Unified Diff: tests/language/factory5_test.dart

Issue 2132903003: Remove analyzer warning from test. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/factory5_test.dart
diff --git a/tests/language/factory5_test.dart b/tests/language/factory5_test.dart
index 3679f0d96a57d5b166f7d2874df7b978fb623ccf..6155625a8d9865dc6d0dd11e955aba5a3a7a0fd5 100644
--- a/tests/language/factory5_test.dart
+++ b/tests/language/factory5_test.dart
@@ -6,7 +6,7 @@ abstract class Link<T> {
factory Link.create() = LinkFactory<T>.create;
}
-class LinkFactory<T> {
+class LinkFactory<T> implements Link<T> {
factory LinkFactory.create() { return null; }
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698