| Index: tests/language/factory6_test.dart
|
| diff --git a/tests/language/factory6_test.dart b/tests/language/factory6_test.dart
|
| index 0f998ff253d1342027c97eaacb05d97025588f4c..bcc710797edbb3b54b3d62e461098be84d26235d 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
|
| }
|
|
|