Sign in
android
/
platform
/
prebuilts
/
go
/
windows-x86
/
refs/heads/studio-1.4-dev
/
.
/
blog
/
content
/
constants
/
exercise4.go
blob: 3acc664a7f55168cad137856c172c598ede72585 [
file
] [
log
] [
blame
] [
edit
]
// +build OMIT
package main
func main() {
// START OMIT
var u uint
const v = -1
u = uint(v)
// Error: negative value
// STOP OMIT
_ = u
}