github.com/be-b10g/golangci-lint@v1.17.2/test/testdata/withtests/p_test.go (about)

     1  package withtests
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestSomething(t *testing.T) {
     9  	if true {
    10  		return
    11  	} else {
    12  		fmt.Printf("test")
    13  	}
    14  }