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

string(bytes_array) cast

This commit is contained in:
Alexander Medvednikov
2019-07-20 22:03:38 +02:00
parent 7f512eaf72
commit c3c6648c57
2 changed files with 12 additions and 1 deletions

View File

@@ -328,4 +328,6 @@ fn test_bytes_to_string() {
buf[4] = `o`
assert string(buf) == 'hello'
assert string(buf, 2) == 'he'
bytes := [`h`, `e`, `l`, `l`, `o`]
assert string(bytes) == 'hello'
}