Index: tests/language/runtime_type_test.dart |
diff --git a/tests/language/runtime_type_test.dart b/tests/language/runtime_type_test.dart |
index 03c4576e9d06f210ff7b6e6880d4258da38ad561..fb35329333186f9c8af316ba1490ec5d8318961b 100644 |
--- a/tests/language/runtime_type_test.dart |
+++ b/tests/language/runtime_type_test.dart |
@@ -10,4 +10,5 @@ class A { |
main() { |
Expect.isTrue(new A().className is Type); |
+ Expect.isTrue(null.runtimeType is Type); |
regis
2015/07/01 01:45:56
Great. You could also add
null.runtimeType is Null
srdjan
2015/07/01 16:15:39
'null.runtimeType is Null' is always false. Instea
|
} |