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

Unified Diff: tests/language_strong/class_cycle_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_strong/class_cycle_test.dart
diff --git a/tests/language_strong/class_cycle_test.dart b/tests/language_strong/class_cycle_test.dart
index 4c8a3827df5b7818795787c8894e11dc4ab9c66e..472aeefb20dfd451035f69869bbe79d78238b399 100644
--- a/tests/language_strong/class_cycle_test.dart
+++ b/tests/language_strong/class_cycle_test.dart
@@ -12,19 +12,19 @@ class C {
}
class Bar
- extends Foo /// 00: compile-time error
- implements Foo /// 01: compile-time error
+ extends Foo //# 00: compile-time error
+ implements Foo //# 01: compile-time error
{
}
class ImplementsC implements C
-, C /// 02: compile-time error
+, C //# 02: compile-time error
{}
// Spec says: It is a compile-time error if the superclass
// of a class C appears in the implements clause of C.
class ExtendsC extends C
-implements C /// 03: compile-time error
+implements C //# 03: compile-time error
{}
main() {

Powered by Google App Engine
This is Rietveld 408576698