From: Rob Pike Date: Sun, 27 Jul 2008 20:32:33 +0000 (-0700) Subject: really fix it this time X-Git-Tag: weekly.2009-11-06~3418 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8fda2e40837f8b2968f787c7bf2be4589847fca3;p=gostls13.git really fix it this time R=ken OCL=13506 CL=13506 --- diff --git a/test/bugs/bug057.go b/test/bugs/bug057.go index cb23961cab..dd6df5c315 100644 --- a/test/bugs/bug057.go +++ b/test/bugs/bug057.go @@ -15,7 +15,7 @@ func main() { s := ""; l1 := len(s); var t T; - l2 := len(T.s); // BUG: cannot take len() of a string field + l2 := len(t.s); // BUG: cannot take len() of a string field } /*