Source file src/cmd/cover/testdata/pkgcfg/yesFuncsNoTests/yfnt.go

     1  package yesFuncsNoTests
     2  
     3  func F1() {
     4  	println("hi")
     5  }
     6  
     7  func F2(x int) int {
     8  	if x < 0 {
     9  		return 9
    10  	} else {
    11  		return 10
    12  	}
    13  }
    14  

View as plain text