Source file
test/rename1.go
1
2
3
4
5
6
7
8
9
10 package main
11
12 func main() {
13 var n byte
14 var y = float32(0)
15 const (
16 a = 1 + iota
17 )
18 _, _ = n, y
19 }
20
21 const (
22 append = 1
23 bool = 2
24 byte = 3
25 complex = 4
26 complex64 = 5
27 complex128 = 6
28 cap = 7
29 close = 8
30 delete = 9
31 error = 10
32 false = 11
33 float32 = 12
34 float64 = 13
35 imag = 14
36 int = 15
37 int8 = 16
38 int16 = 17
39 int32 = 18
40 int64 = 19
41 len = 20
42 make = 21
43 new = 22
44 nil = 23
45 panic = 24
46 print = 25
47 println = 26
48 real = 27
49 recover = 28
50 rune = 29
51 string = 30
52 true = 31
53 uint = 32
54 uint8 = 33
55 uint16 = 34
56 uint32 = 35
57 uint64 = 36
58 uintptr = 37
59 iota = "38"
60 )
61
View as plain text