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

Unified Diff: tests/language_strong/redirecting_factory_infinite_steps_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
Index: tests/language_strong/redirecting_factory_infinite_steps_test.dart
diff --git a/tests/language_strong/redirecting_factory_infinite_steps_test.dart b/tests/language_strong/redirecting_factory_infinite_steps_test.dart
index e6550801e57f55984c16f6c472d369a8890933a5..cc22535d92cf20469a3feb53a4711599e283ede1 100644
--- a/tests/language_strong/redirecting_factory_infinite_steps_test.dart
+++ b/tests/language_strong/redirecting_factory_infinite_steps_test.dart
@@ -13,11 +13,11 @@
// indirectly via a sequence of redirections."
class Foo extends Bar {
- factory Foo() = Bar; /// 01: static type warning, dynamic type error
+ factory Foo() = Bar; //# 01: static type warning, dynamic type error
}
class Bar {
- factory Bar() = Foo; /// 02: compile-time error
+ factory Bar() = Foo; //# 02: compile-time error
}
main() {

Powered by Google App Engine
This is Rietveld 408576698