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

tests: valgrind: strings are freed now!

This commit is contained in:
Alexander Medvednikov 2020-05-25 06:20:04 +00:00
parent f41e2c0a4b
commit 656bc6b6c8

View File

@ -12,8 +12,8 @@ fn foo() {
nums_copy := nums // array assignments call .clone()
println(nums_copy)
//name := 'Peter' // string literals mustn't be freed
//str_inter := 'hello, $name' // concatenated strings must be freed
name := 'Peter' // string literals mustn't be freed
str_inter := 'hello, $name' // concatenated strings must be freed