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

checker: check number of fields in short struct inits (#6280)

This commit is contained in:
spaceface777
2020-08-31 22:17:59 +02:00
committed by GitHub
parent 60a9d49382
commit bd304f1141
8 changed files with 40 additions and 27 deletions

View File

@@ -32,7 +32,7 @@ pub fn dial_udp(laddr, raddr string) ?UdpConn {
}
return UdpConn {
sock
sock: sock
}
}