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

package main

func main() {
	// START OMIT
	const MaxUint uint = ^0 // Error: overflow
	// STOP OMIT
}