github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/blog/content/constants/exercise2.go (about)

     1  // +build OMIT
     2  
     3  package main
     4  
     5  func main() {
     6  	// START OMIT
     7  	const MaxUint uint = uint(-1) // Error: negative value
     8  	// STOP OMIT
     9  }