Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / staticcheck / testdata / src / CheckExec / CheckExec.go
1 package pkg
2
3 import "os/exec"
4
5 func fn() {
6         exec.Command("ls")
7         exec.Command("ls arg1") // want `first argument to exec`
8         exec.Command(`C:\Program Files\this\is\insane.exe`)
9         exec.Command("/Library/Application Support/VMware Tools/vmware-tools-daemon")
10 }