Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
vlib
/
net
/
ssl
/
ssl_compiles_test.v
6
lines
·
5
sloc
·
219 bytes
·
a80bc2331450fc28c900097f8afafe173f161d27
Raw
1
// vtest build: present_openssl? && !(windows && tinyc) // TODO: fix these by adding declarations for the missing functions in the prebuilt tcc
2
import
net.ssl
3
4
fn
test_ssl_compiles() {
5
assert sizeof(ssl.SSLConn) > 0
6
}
7