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

checker: more default field fixes

This commit is contained in:
Alexander Medvednikov
2020-09-09 14:14:44 +02:00
parent 925f1781b3
commit ea31f75098
10 changed files with 25 additions and 25 deletions

View File

@ -230,8 +230,8 @@ struct SimpleTcpClientConfig {
host string = 'static.dev'
path string = '/'
agent string = 'v/net.tcp.v'
headers string = ''
content string = ''
headers string
content string
}
fn simple_tcp_client(config SimpleTcpClientConfig) ?string {