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

@ -14,7 +14,7 @@ const (
pub struct Fn {
// addr int
pub:
//pub:
mut:
name string
mod string