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

Unified Diff: tests/language/duplicate_implements_test.dart

Issue 23809011: Fix language/duplicate_implements_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | tests/language/language_dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/duplicate_implements_test.dart
diff --git a/tests/language/duplicate_implements_test.dart b/tests/language/duplicate_implements_test.dart
index 5baf45f9d91e2c8c2d584a7c69c5e006d0a4499f..e9ff103dcfa786055cd5231e53399cd54403bd2a 100644
--- a/tests/language/duplicate_implements_test.dart
+++ b/tests/language/duplicate_implements_test.dart
@@ -15,5 +15,8 @@ abstract class Z implements I, J, J { } /// 03: compile-time error
abstract class Z implements K<int>, K<int> { } /// 04: compile-time error
main() {
- return null;
+ X x = new X(); /// 01: continued
+ X x = new X(); /// 02: continued
+ Z z = new Z(); /// 03: continued
+ Z z = new Z(); /// 04: continued
}
« no previous file with comments | « no previous file | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698