Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vq
/
vlib
/
v
/
tests
/
interfaces
/
interface_only_decl_with_option_test.v
8
lines
·
7
sloc
·
128 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
interface
Message {
2
serialize() ?[]u8
3
}
4
5
fn
test_interface_only_decl_with_option() {
6
println(
'test interface'
)
7
assert
true
8
}
9