github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/talks/2013/go1.1/intdiv.go (about) 1 // +build OMIT 2 3 package main 4 5 func f(x int) int { 6 return x / 0 7 } 8 9 func main() { 10 f(1) 11 }