v2 / vlib / v / tests / modules / consts_with_complex_init / config.v
13 lines · 9 sloc · 145 bytes · 679bcb30946c9b80f4006faccc496f19e55d4b42
Raw
1module main
2
3import rand
4
5struct MyStruct {
6 foo int
7}
8
9const my_struct = MyStruct{rand.intn(6) or { panic(err) }}
10
11fn main() {
12 dump('hello')
13}
14