Merge pull request #3801 from stranger26/patch-1

[dart] fixed typo
This commit is contained in:
Max Schumacher 2020-01-28 18:59:22 +01:00 committed by GitHub
commit 09109e8632
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,7 +223,7 @@ example14() {
// statically typed null can not be convert to bool
var c = "abc";
c = null;
// complie failed
// compile failed
// if (c) {
// print("true, c is $c");
// } else {