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

Unified Diff: tests/language/constructor10_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/constructor10_test.dart
diff --git a/tests/language/constructor10_test.dart b/tests/language/constructor10_test.dart
index f4923b7887ca1a647d846c7d7a6d83f94057b481..87d5a96a80a583ebb15312724135814fa4774fd6 100644
--- a/tests/language/constructor10_test.dart
+++ b/tests/language/constructor10_test.dart
@@ -11,17 +11,17 @@ class A {
}
class B extends A {
- /* /// 00: compile-time error
+ /* //# 00: compile-time error
B() : super(null);
- */ /// 00: continued
+ */ //# 00: continued
}
// ==========
class Y extends A {
- /* /// 01: compile-time error
+ /* //# 01: compile-time error
Y() : super(null);
- */ /// 01: continued
+ */ //# 01: continued
}
class Z extends Y {
@@ -31,9 +31,9 @@ class Z extends Y {
// ==============
class G extends A {
- /* /// 02: compile-time error
+ /* //# 02: compile-time error
G() : super(null);
- */ /// 02: continued
+ */ //# 02: continued
}
class H extends G {

Powered by Google App Engine
This is Rietveld 408576698