Sign in
go
/
website
/
4c8263311032e41afd73fd00478a93dac869e081
/
.
/
_content
/
blog
/
constants
/
int1.go
blob: 913ad78193250a43ddf69bc113a0af57f34d3602 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
func main() {
// START OMIT
type MyInt int
const Three = 3
const TypedThree int = 3
var mi MyInt
mi = 3
// OK
mi = Three
// OK
mi = TypedThree
// Bad
fmt.Println(mi)
// STOP OMIT
}