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

Unified Diff: tests/language/duplicate_implements_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 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: tests/language/duplicate_implements_test.dart
diff --git a/tests/language/duplicate_implements_test.dart b/tests/language/duplicate_implements_test.dart
index e9ff103dcfa786055cd5231e53399cd54403bd2a..1841e986148d02533a08d403aece54e3643db444 100644
--- a/tests/language/duplicate_implements_test.dart
+++ b/tests/language/duplicate_implements_test.dart
@@ -8,15 +8,15 @@ abstract class I { }
abstract class J { }
abstract class K<T> { }
-class X implements I, J, I { } /// 01: compile-time error
-class X implements J, I, K<int>, K<int> { } /// 02: compile-time error
+class X implements I, J, I { } //# 01: compile-time error
+class X implements J, I, K<int>, K<int> { } //# 02: compile-time error
-abstract class Z implements I, J, J { } /// 03: compile-time error
-abstract class Z implements K<int>, K<int> { } /// 04: compile-time error
+abstract class Z implements I, J, J { } //# 03: compile-time error
+abstract class Z implements K<int>, K<int> { } //# 04: compile-time error
main() {
- X x = new X(); /// 01: continued
- X x = new X(); /// 02: continued
- Z z = new Z(); /// 03: continued
- Z z = new Z(); /// 04: continued
+ X x = new X(); //# 01: continued
+ X x = new X(); //# 02: continued
+ Z z = new Z(); //# 03: continued
+ Z z = new Z(); //# 04: continued
}

Powered by Google App Engine
This is Rietveld 408576698