Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
structs
/
struct_ierror_test.v
10
lines
·
9
sloc
·
111 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
struct
Test {
2
err IError
3
}
4
5
fn
test_init_with_none() {
6
t := Test{
7
err:
none
8
}
9
// compiles successfully
10
}
11