From 3c51a69937c2bd99c746007c99b9b44d44a0060b Mon Sep 17 00:00:00 2001 From: Alan Donovan Date: Mon, 28 Jan 2013 18:26:26 -0500 Subject: [PATCH] exp/gotype: fix build breakage due to https://code.google.com/p/go/source/detail?r=ca5e5de48173 Add 'math/big' to blacklist of packages that use shift operations as yet unsupported by go/types. (The failure was masked due to local bugfixes in my client.) R=rsc, bradfitz, bradfitz CC=golang-dev https://golang.org/cl/7220057 --- src/pkg/exp/gotype/gotype_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/exp/gotype/gotype_test.go b/src/pkg/exp/gotype/gotype_test.go index 405093b2ae..67ab7cfa74 100644 --- a/src/pkg/exp/gotype/gotype_test.go +++ b/src/pkg/exp/gotype/gotype_test.go @@ -150,7 +150,7 @@ var tests = []string{ "log/syslog", // "math", - "math/big", + //"math/big", "math/cmplx", "math/rand", -- 2.48.1