github.com/chenfeining/golangci-lint@v1.0.2-0.20230730162517-14c6c67868df/test/testdata/withxtest/p_test.go (about)

     1  package p_test
     2  
     3  import "fmt"
     4  
     5  func WithGolintIssues(b bool) { //nolint:megacheck
     6  	if b {
     7  		return
     8  	} else {
     9  		fmt.Print("1")
    10  	}
    11  }