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

fix sruct access modifiers (pub, pub mut, mut)

This commit is contained in:
Alexander Medvednikov
2019-12-13 17:18:01 +03:00
parent fc64238a39
commit 78131e78bc
6 changed files with 44 additions and 31 deletions

View File

@@ -7,7 +7,7 @@ module strings
pub struct Builder {
mut:
buf []byte
pub:
pub mut:
len int
initial_size int = 1
}