1
0
mirror of https://github.com/golang/go synced 2024-10-03 11:11:22 -06:00

exp/types: add rune to universe

R=gri
CC=golang-dev
https://golang.org/cl/5295045
This commit is contained in:
Russ Cox 2011-10-25 22:19:09 -07:00
parent 5abb29d1b8
commit f4568882eb

View File

@ -54,6 +54,7 @@ func init() {
Bool = defType("bool")
defType("byte") // TODO(gri) should be an alias for uint8
defType("rune") // TODO(gri) should be an alias for int
defType("complex64")
Complex128 = defType("complex128")
defType("float32")