Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
option_array_arg_err.vv
9
lines
·
8
sloc
·
128 bytes
·
9190f586a558d89f869542f838c0d2ebe43f8e35
Raw
1
fn use_bytes(data []u8) int {
2
return data.len
3
}
4
5
fn main() {
6
use_bytes(?[]u8(none))
7
maybe := ?[]u8(none)
8
use_bytes(maybe)
9
}
10