github.com/songshiyun/revive@v1.1.5-0.20220323112655-f8433a19b3c5/testdata/exported-issue-552.go (about)

     1  // Package golint comment
     2  package golint
     3  
     4  // Test cases for enabling checks of exported methods of private types in exported rule
     5  type private struct {
     6  }
     7  
     8  // MATCH /comment on exported method private.Method should be of the form "Method ..."/
     9  func (p *private) Method() {
    10  }