v/vlib/v/checker/tests/void_function_assign_to_str...

9 lines
89 B
V
Raw Normal View History

2020-10-15 12:39:32 +02:00
fn x(x int,y int) {
}
fn main(){
mut a := ''
a = x(1,2) // hello
eprintln('a: $a')
}