mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
string(buffer, len) cast
This commit is contained in:
@ -318,3 +318,14 @@ fn test_interpolation() {
|
||||
assert s == 'baz=baz'
|
||||
|
||||
}
|
||||
|
||||
fn test_bytes_to_string() {
|
||||
mut buf := malloc(10)
|
||||
buf[0] = `h`
|
||||
buf[1] = `e`
|
||||
buf[2] = `l`
|
||||
buf[3] = `l`
|
||||
buf[4] = `o`
|
||||
assert string(buf) == 'hello'
|
||||
assert string(buf, 2) == 'he'
|
||||
}
|
||||
|
Reference in New Issue
Block a user