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

fix 2 repl tests

This commit is contained in:
Alexander Medvednikov
2019-12-18 04:59:42 +03:00
parent a46a2e4715
commit 7456d556e1
3 changed files with 12 additions and 14 deletions

View File

@ -12,19 +12,19 @@ println('BYE')
cannot modify immutable field `len` (type `string`)
declare the field with `mut:`
struct string {
mut:
mut:
len int
}
cannot modify immutable field `len` (type `array`)
declare the field with `mut:`
struct array {
mut:
mut:
len int
}
cannot modify immutable field `len` (type `array`)
declare the field with `mut:`
struct array {
mut:
mut:
len int
}
BYE