From 8fda2e40837f8b2968f787c7bf2be4589847fca3 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Sun, 27 Jul 2008 13:32:33 -0700 Subject: [PATCH] really fix it this time R=ken OCL=13506 CL=13506 --- test/bugs/bug057.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } /* -- 2.48.1