vxx2 / vlib / v / checker / tests / decompose_interface_err.vv
19 lines · 15 sloc · 220 bytes · 3f76b691651a08d54d60344af18474b406377a3c
Raw
1module main
2
3import arrays
4
5interface Value {}
6
7fn some_function(values ...Value) {
8 println(values)
9}
10
11fn main() {
12 country_ids := [
13 'AD',
14 'AE',
15 'AF',
16 ]
17 region_id := 'something'
18 some_function(...country_ids)
19}
20