v2 / vlib / v / tests / options / option_array_init_mix_test.v
9 lines · 8 sloc · 181 bytes · 7c6dba33925865e3ad25ce38cdd7d6601113c4af
Raw
1fn test_main() {
2 a := [?string('a'), 'b']!
3 println(a)
4 assert '${a}' == "[Option('a'), Option('b')]"
5
6 b := [?int(1), 7]!
7 println(b)
8 assert '${b}' == '[Option(1), Option(7)]'
9}
10