github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/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  }