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

Unified Diff: tests/language/factory6_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/factory2_test.dart ('k') | tests/language/factory_implementation_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/factory6_test.dart
diff --git a/tests/language/factory6_test.dart b/tests/language/factory6_test.dart
index ce30c65fd40a019cca0f9956c4b4ca70943e1188..3d06b0d408d8d47c172f206303a6e27d0bb4a1d5 100644
--- a/tests/language/factory6_test.dart
+++ b/tests/language/factory6_test.dart
@@ -5,13 +5,13 @@
import 'package:expect/expect.dart';
abstract class Link<T> {
- factory Link.Foo() = LinkFactory<T>.Foo; // /// 00: static type warning
+ factory Link.Foo() = LinkFactory<T>.Foo; // //# 00: static type warning
}
class LinkFactory<T> {
- factory LinkFactory.Foo() = Foo<T>; // /// 00: continued
+ factory LinkFactory.Foo() = Foo<T>; // //# 00: continued
}
main() {
- Expect.throws(() => new Link<int>.Foo()); /// 00: continued
+ Expect.throws(() => new Link<int>.Foo()); //# 00: continued
}
« no previous file with comments | « tests/language/factory2_test.dart ('k') | tests/language/factory_implementation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698