gen: removes space on struct printing (#6535)

pull/6536/head
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
second
third
}
pub struct MyStruct {
struct MyStruct {
mut:
e MyEnum = .second
}