const path/filepath.Separator

16 uses

	path/filepath (current package)
		match.go#L54: 			return !strings.Contains(name, string(Separator)), nil
		match.go#L71: 			for i := 0; i < len(name) && name[i] != Separator; i++ {
		match.go#L170: 				failed = s[0] == Separator
		match.go#L289: 	case string(Separator):
		path.go#L24: 	Separator     = os.PathSeparator
		path.go#L199: 		base = string(Separator)
		path.go#L203: 	baseSlashed := len(base) > 0 && base[0] == Separator
		path.go#L204: 	targSlashed := len(targ) > 0 && targ[0] == Separator
		path.go#L213: 		for bi < bl && base[bi] != Separator {
		path.go#L216: 		for ti < tl && targ[ti] != Separator {
		path.go#L236: 		seps := bytealg.CountString(base[b0:bl], Separator)
		path.go#L244: 			buf[n] = Separator
		path.go#L249: 			buf[n] = Separator
		path_unix.go#L36: 			return Clean(strings.Join(elem[i:], string(Separator)))

	go/build
		build.go#L180: 	const sep = string(filepath.Separator)

	net/http
		fs.go#L93: 		return nil, mapOpenError(err, fullName, filepath.Separator, os.Stat)