diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f687745d4..32e757d9031 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,20 @@ #2 main (file:///Users/mit/tmp/tool/bin/main.dart:9:10) ``` + * The `Null` type has been moved to the bottom of the type hierarchy. As such, + it is considered a subtype of every other type. + + Examples: + ``` + Null foo() => null; + int x = foo(); + String x = foo(); + + List bar() => []; + List = bar(); + List = bar(); + ``` + ### Tool changes * Dart2Js