| Index: tests/language/first_class_types_test.dart
|
| ===================================================================
|
| --- tests/language/first_class_types_test.dart (revision 12980)
|
| +++ tests/language/first_class_types_test.dart (working copy)
|
| @@ -5,10 +5,14 @@
|
| class C<T> {}
|
|
|
| sameType(a, b) {
|
| + print("a: ${a.runtimeType}");
|
| + print("b: ${b.runtimeType}");
|
| Expect.isTrue(a.runtimeType === b.runtimeType);
|
| }
|
|
|
| differentType(a, b) {
|
| + print("a: ${a.runtimeType}");
|
| + print("b: ${b.runtimeType}");
|
| Expect.isFalse(a.runtimeType === b.runtimeType);
|
| }
|
|
|
|
|