| Index: tests/language/generic_test.dart
|
| ===================================================================
|
| --- tests/language/generic_test.dart (revision 13630)
|
| +++ tests/language/generic_test.dart (working copy)
|
| @@ -47,7 +47,7 @@
|
| D d = new D();
|
| Expect.equals(true, d.caa_.b_ is B<AA>);
|
| Expect.equals(true, d.caa_.b_.isT(const AA()));
|
| - C c = new C(const AA()); // c is of raw type C, T in C<T> is Dynamic.
|
| + C c = new C(const AA()); // c is of raw type C, T in C<T> is dynamic.
|
| Expect.equals(true, c.b_ is B);
|
| Expect.equals(true, c.b_ is B<AA>);
|
| Expect.equals(true, c.b_.isT(const AA()));
|
|
|