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

Unified Diff: tests/language_strong/constructor10_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/language_strong/constant_type_literal_test.dart ('k') | tests/language_strong/constructor9_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/constructor10_test.dart
diff --git a/tests/language_strong/constructor10_test.dart b/tests/language_strong/constructor10_test.dart
index 2906632b5d6140d4ac49e190475fc9e9b7034f62..b6f94bd324e2013a8756b3e192a545feca2ee1fe 100644
--- a/tests/language_strong/constructor10_test.dart
+++ b/tests/language_strong/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 {
« no previous file with comments | « tests/language_strong/constant_type_literal_test.dart ('k') | tests/language_strong/constructor9_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698