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

Unified Diff: tests/language/interface_inherit_field_test.dart

Issue 11434089: Update or delete language tests using obsolete interfaces or default factory (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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: tests/language/interface_inherit_field_test.dart
===================================================================
--- tests/language/interface_inherit_field_test.dart (revision 15648)
+++ tests/language/interface_inherit_field_test.dart (working copy)
@@ -4,11 +4,11 @@
// Test that it is legal to override a field with a field in an interface.
-interface IA {
+abstract class IA {
final int foo;
}
-interface IB extends IA {
+abstract class IB implements IA {
final int foo;
}

Powered by Google App Engine
This is Rietveld 408576698