blob: 528be4235608fc9ad636e5acb78889633e7cfcfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package issue16153
// original test case
const (
x1 uint8 = 255
Y1 = 256
)
// variations
const (
x2 uint8 = 255
Y2
)
const (
X3 int64 = iota
Y3 = 1
)
const (
X4 int64 = iota
Y4
)
|