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

v fmt: fix extra space for anon struct (#16131)

This commit is contained in:
Makhnev Petr
2022-10-21 11:38:19 +04:00
committed by GitHub
parent c684dd8c9b
commit 2e8b9e3b92
5 changed files with 8 additions and 7 deletions

View File

@ -2133,7 +2133,7 @@ with a struct name.
```v
struct Book {
author struct {
author struct {
name string
age int
}