1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fmt: refactor type_to_str (#6607)

This commit is contained in:
Enzo
2020-10-12 17:41:42 +02:00
committed by GitHub
parent 93bb7564dc
commit da7d531f8f
3 changed files with 78 additions and 56 deletions

View File

@@ -6,7 +6,6 @@ fn test_hash_crc32() {
assert sum1 == u32(1212124400)
assert sum1.hex() == '483f8cf0'
c := crc32.new(int(crc32.ieee))
b2 := 'testing crc32 again'.bytes()
sum2 := c.checksum(b2)