0.3.0: it appears stat on a directory has no size on windows

This commit is contained in:
underscorediscovery 2020-02-16 15:52:08 -08:00
parent f182591cf4
commit f5f08bbbf5

View File

@ -10,6 +10,6 @@ System.print(stat.linkCount >= 1) // expect: true
System.print(stat.user is Num) // expect: true
System.print(stat.group is Num) // expect: true
System.print(stat.specialDevice) // expect: 0
System.print(stat.size > 0) // expect: true
System.print(stat.size is Num) // expect: true
System.print(stat.blockSize is Num) // expect: true
System.print(stat.blockCount is Num) // expect: true