Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx
/
vlib
/
v
/
tests
/
interfaces
/
interface_int_test.v
12
lines
·
10
sloc
·
167 bytes
·
056998a42addfa243b44e1ebd2bb2e27d6bd5201
Raw
1
module
main
2
3
interface
Value {}
4
5
fn
test_main() {
6
mut
a := []string{len: 10}
7
mut
v := []Value{}
8
for
i := 0; i < a.len; i++ {
9
v << i
10
}
11
assert v[0] == Value(0)
12
}
13