github.com/mistwind/reviewdog@v0.0.0-20230322024206-9cfa11856d58/_testdata/staticcheck.go (about)

     1  package testdata
     2  
     3  import (
     4  	"errors"
     5  )
     6  
     7  func unused() {
     8  	if errors.New("abc") == errors.New("abc") {
     9  		// test SA4000
    10  	}
    11  }