From f4568882eb8d7638031430b8c5b1f248aa2155c0 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 25 Oct 2011 22:19:09 -0700 Subject: [PATCH] exp/types: add rune to universe R=gri CC=golang-dev https://golang.org/cl/5295045 --- src/pkg/exp/types/universe.go | 1 + 1 file changed, 1 insertion(+) 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")