Sign in
go
/
website
/
0dceb95d042c6e3637ee1476fc08e5ffb02d4e3b
/
.
/
_content
/
blog
/
constants
/
int3.go
blob: c2cec6ede1516b113d88bc944484b8ff5c024438 [
file
] [
log
] [
blame
]
// +build OMIT
package main
func main() {
// START OMIT
var u8 uint8 = -1
// Error: negative value.
// STOP OMIT
_ = u8
}