aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-10-25 22:19:09 -0700
committerRuss Cox <rsc@golang.org>2011-10-25 22:19:09 -0700
commitf4568882eb8d7638031430b8c5b1f248aa2155c0 (patch)
treea24e505fdd13affe927a3608aaac92ab6af5002b
parent5abb29d1b8b741dcadb22720ced7e5e8a131633f (diff)
downloadgo-f4568882eb8d7638031430b8c5b1f248aa2155c0.tar.gz
go-f4568882eb8d7638031430b8c5b1f248aa2155c0.zip
exp/types: add rune to universe
R=gri CC=golang-dev https://golang.org/cl/5295045
-rw-r--r--src/pkg/exp/types/universe.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/exp/types/universe.go b/src/pkg/exp/types/universe.go
index 80db127829..f0435966d1 100644
--- a/src/pkg/exp/types/universe.go
+++ b/src/pkg/exp/types/universe.go
@@ -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")