aboutsummaryrefslogtreecommitdiff
path: root/content/constants/exercise2.go
blob: db7d8c17f4af975b5d04b25a1cd54a0ffd02d373 (plain)
1
2
3
4
5
6
7
8
9
// +build OMIT

package main

func main() {
	// START OMIT
	const MaxUint uint = uint(-1) // Error: negative value
	// STOP OMIT
}