aboutsummaryrefslogtreecommitdiff
path: root/content/constants/bool.go
blob: 7578d4ac602323dc808652fff583f28c05ca6291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// +build OMIT

package main

import "fmt"

func main() {
	// START OMIT
	type MyBool bool
	const True = true
	const TypedTrue bool = true
	var mb MyBool
	mb = true      // OK
	mb = True      // OK
	mb = TypedTrue // Bad
	fmt.Println(mb)
	// STOP OMIT
}