1
0
mirror of https://github.com/mgechev/revive.git synced 2025-02-05 13:15:05 +02:00
revive/fixtures/golint/docs_test.go

18 lines
238 B
Go
Raw Normal View History

2018-01-23 23:01:49 -08:00
// This file ends in _test.go, so we should not warn about doc comments.
// OK
package pkg
import "testing"
type H int
func TestSomething(t *testing.T) {
}
func TestSomething_suffix(t *testing.T) {
}
func ExampleBuffer_reader() {
}