mirror of
https://github.com/mgechev/revive.git
synced 2025-02-05 13:15:05 +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() {
|
||
|
}
|