| 1 | vlib/v/checker/tests/map_result_callback_fn_err.vv:13:13: notice: unused parameter: `cmd` |
| 2 | 11 | } |
| 3 | 12 | |
| 4 | 13 | fn execsync(cmd cli.Command) ! { |
| 5 | | ~~~ |
| 6 | 14 | dens := os.read_lines('/etc/fox/dens')!.map(urllib.parse(it)!) |
| 7 | 15 | mut threads := []thread !{} |
| 8 | vlib/v/checker/tests/map_result_callback_fn_err.vv:19:17: error: cannot use Result type in `map` |
| 9 | 17 | threads << spawn update(den) |
| 10 | 18 | } |
| 11 | 19 | threads.map(it.wait()!) |
| 12 | | ~~~~~~~ |
| 13 | 20 | } |
| 14 | 21 | |
| 15 |