mirror of
https://github.com/mgechev/revive.git
synced 2024-11-28 08:49:11 +02:00
18 lines
238 B
Go
18 lines
238 B
Go
// 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() {
|
|
}
|