File: lint_tester.goo

package info (click to toggle)
golang-github-mna-redisc 1.1.7-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 320 kB
  • sloc: ruby: 1,261; sh: 101; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
package misc

import "fmt"

// golint error
func Exported(s string) {
	fmt.Printf("%d", s) // go vet error
return // gofmt error
}