Home | History | Annotate | Download | only in testdata
      1 // 
      2 PACKAGE issue16153
      3 
      4 IMPORTPATH
      5 	testdata/issue16153
      6 
      7 FILENAMES
      8 	testdata/issue16153.go
      9 
     10 CONSTANTS
     11 	// original test case 
     12 	const (
     13 		x1	uint8	= 255
     14 		Y1		= 256
     15 	)
     16 
     17 	// variations 
     18 	const (
     19 		x2	uint8	= 255
     20 		Y2
     21 	)
     22 
     23 	// 
     24 	const (
     25 		X3	int64	= iota
     26 		Y3		= 1
     27 	)
     28 
     29 	// 
     30 	const (
     31 		X4	int64	= iota
     32 		Y4
     33 	)
     34 
     35