mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
9 lines
135 B
Go
9 lines
135 B
Go
package main
|
|
|
|
import (
|
|
"github.com/golangci/golangci-lint/test/testdata_etc/unused_exported/lib"
|
|
)
|
|
|
|
func main() {
|
|
lib.PublicFunc()
|
|
}
|