Index: tests/language_strong/runtime_type_test.dart |
diff --git a/tests/language_strong/runtime_type_test.dart b/tests/language_strong/runtime_type_test.dart |
index f0b66db02bddad945a6556910b9743c7cdb233d4..856679a137e974c06850f277ff0aec7fb13e5295 100644 |
--- a/tests/language_strong/runtime_type_test.dart |
+++ b/tests/language_strong/runtime_type_test.dart |
@@ -33,4 +33,7 @@ main() { |
Expect.isTrue(null.runtimeType is Type); |
Expect.equals(Null, null.runtimeType); |
+ |
+ Expect.equals([].runtimeType.toString(), 'List'); |
+ Expect.equals((<int>[]).runtimeType.toString(), 'List<int>'); |
} |