mirror of
https://github.com/vlang/v.git
synced 2025-08-04 02:07:28 -04:00
7 lines
219 B
V
7 lines
219 B
V
// vtest build: present_openssl? && !(windows && tinyc) // TODO: fix these by adding declarations for the missing functions in the prebuilt tcc
|
|
import net.ssl
|
|
|
|
fn test_ssl_compiles() {
|
|
assert sizeof(ssl.SSLConn) > 0
|
|
}
|