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

Unified Diff: tests/language/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/constructor_named_arguments_test.dart ('k') | tests/language/core_type_check_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/constructor_test.dart
diff --git a/tests/language/constructor_test.dart b/tests/language/constructor_test.dart
index 54923f0a42c79f5d205f00802a382d89641d1396..eb7239c50b4855e33eeaea321733d029db7d1af9 100644
--- a/tests/language/constructor_test.dart
+++ b/tests/language/constructor_test.dart
@@ -23,11 +23,10 @@ class B {
// Test the order of initialization: first the instance variable then
// the super constructor.
-abstract class Alpha {
+class Alpha {
Alpha(v) {
this.foo(v);
}
- foo(v) => throw 'Alpha.foo should never be called.';
}
class Beta extends Alpha {
« no previous file with comments | « tests/language/constructor_named_arguments_test.dart ('k') | tests/language/core_type_check_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698