vfmt: fix `union {}` declarations
parent
4ccb219079
commit
ae241785bf
|
@ -572,7 +572,11 @@ pub fn (mut f Fmt) struct_decl(node ast.StructDecl) {
|
|||
if node.is_pub {
|
||||
f.write('pub ')
|
||||
}
|
||||
if node.is_union {
|
||||
f.write('union ')
|
||||
} else {
|
||||
f.write('struct ')
|
||||
}
|
||||
f.write_language_prefix(node.language)
|
||||
name := node.name.after('.')
|
||||
f.writeln('$name {')
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
union Un {
|
||||
i int
|
||||
b byte
|
||||
}
|
Loading…
Reference in New Issue