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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/currency_exchange.dart

Issue 11314019: Using 'interface' and 'abstract' for methods should produce error (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
Index: editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/currency_exchange.dart
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/currency_exchange.dart b/editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/currency_exchange.dart
index bfd4fb2d76a8ddc7cbfc94b2b4eb55a2256eb281..a21f43fc274e07b51baab8962ca526d488bb288b 100644
--- a/editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/currency_exchange.dart
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/currency_exchange.dart
@@ -6,7 +6,7 @@
* The interface [CurrencyExchange] defines the behavior of classes that can
* convert from one currency to another.
*/
-interface CurrencyExchange {
+abstract class CurrencyExchange {
int convert(int amount, String sourceCurrency, String targetCurrency);
}

Powered by Google App Engine
This is Rietveld 408576698