1
0
Fork 0
mirror of synced 2024-06-27 11:11:10 -04:00
ultimate-vim/sources_non_forked/vim-go/t/fixtures/src/pkg1/sample.go
2016-04-12 09:31:09 +01:00

13 lines
171 B
Go

// set gopath before
//go:generate go test --coverprofile=sample.out
package pkg1
func Sample() int {
if false {
return 0
} else if false {
return 0
}
return 1
}