v2 / vlib / v / tests / structs / struct_ierror_test.v
10 lines · 9 sloc · 111 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1struct Test {
2 err IError
3}
4
5fn test_init_with_none() {
6 t := Test{
7 err: none
8 }
9 // compiles successfully
10}
11