mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
18 lines
293 B
V
18 lines
293 B
V
import net.openssl
|
|
|
|
struct Abc {
|
|
x &C.SSL_CTX
|
|
}
|
|
|
|
fn test_printing_struct_with_reference_field_of_type_ssl_ctx() {
|
|
a := unsafe { Abc{&C.SSL_CTX(123)} }
|
|
dump(a)
|
|
sa := a.str()
|
|
assert sa.contains('&C.SSL_CTX(0x7b)')
|
|
}
|
|
|
|
fn test_openssl_compiles() {
|
|
assert openssl.is_used == 1
|
|
assert true
|
|
}
|