mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-go/t/fixtures/src/pkg1/sample.go

13 lines
171 B
Go
Raw Normal View History

2016-04-12 04:31:09 -04:00
// 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
}