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

gen: removes space on struct printing (#6535)

This commit is contained in:
Daniel Däschle 2020-10-02 13:06:02 +02:00 committed by GitHub
parent c53ebd89b1
commit 2204bad7cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 44 additions and 44 deletions

View File

@ -1,10 +1,10 @@
pub enum MyEnum { enum MyEnum {
first = 20 first = 20
second second
third third
} }
pub struct MyStruct { struct MyStruct {
mut: mut:
e MyEnum = .second e MyEnum = .second
} }