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

Unified Diff: tests/language/abstract_factory_constructor_test.dart

Issue 166433002: Revert "Fix language tests wrt. warnings." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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/abstract_exact_selector_test.dart ('k') | tests/language/abstract_getter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/abstract_factory_constructor_test.dart
diff --git a/tests/language/abstract_factory_constructor_test.dart b/tests/language/abstract_factory_constructor_test.dart
index cdd03f94fa4ea04674a3f4ea3879f970aeaa1fc9..d2e3a6f00219e2106dbf4bee7b58f65644f95c8f 100644
--- a/tests/language/abstract_factory_constructor_test.dart
+++ b/tests/language/abstract_factory_constructor_test.dart
@@ -11,13 +11,13 @@ class B extends A1 {
method() {}
}
-abstract class A1 {
+class A1 {
A1() {}
method(); // Abstract.
factory A1.make() { return new B(); }
}
-abstract class A2 {
+class A2 {
method(); // Abstract.
A2.make() {}
}
« no previous file with comments | « tests/language/abstract_exact_selector_test.dart ('k') | tests/language/abstract_getter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698