honnef.co/go/tools@v0.4.7/staticcheck/testdata/src/example.com/CheckEmptyBranch/CheckEmptyBranch_test.go (about)

     1  package pkg
     2  
     3  import "testing"
     4  
     5  func TestFoo(t *testing.T) {
     6  	if true { //@ diag(`empty branch`)
     7  		// TODO
     8  	}
     9  }
    10  
    11  func ExampleFoo() {
    12  	if true {
    13  		// TODO
    14  	}
    15  }