v2 / 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
2import net.ssl
3
4fn test_ssl_compiles() {
5 assert sizeof(ssl.SSLConn) > 0
6}
7