# annotates pkg from std lib

#setenv script_keepwork true
godebugtester run -work -srclines=false main.go
#godebugtester run
contains stdout "_.Clean"

-- go.mod --
module mod1
-- main.go --
package main
import "fmt"
//godebug:annotateimport
import "path/filepath"

func main() {
	a:=[]string{"a","b"}
	fmt.Println(filepath.Join(a...))
}
