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

package main

func main() {
	// START OMIT
	type Char byte
	var c Char = '世' // Error: '世' has value 0x4e16, too large.
	// STOP OMIT
	_ = c
}