Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
project_issue_15724
/
main.v
10
lines
·
8
sloc
·
146 bytes
·
9e8f69efbae14402ca57b93f97c8737ed12279c1
Raw
1
module
main
2
3
fn
get_key_refcount() u32 {
4
key := &C._gpgme_key(unsafe { nil })
5
return
key._refs
6
}
7
8
fn
main() {
9
assert get_key_refcount() == 0
10
}
11