v/vlib/net/dial_tcp_with_bind_test.v
2024-02-09 11:52:27 +02:00

13 lines
195 B
V

import net
fn test_bind() {
$if !network ? {
return
}
eprintln(@LOCATION)
mut conn := net.dial_tcp_with_bind('vlang.io:80', '0.0.0.0:0')!
dump(conn)
conn.close()!
eprintln(@LOCATION)
}