1
0
mirror of https://github.com/golang/go synced 2024-11-12 02:10:21 -07:00

really fix it this time

R=ken
OCL=13506
CL=13506
This commit is contained in:
Rob Pike 2008-07-27 13:32:33 -07:00
parent 8a09c131cc
commit 8fda2e4083

View File

@ -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
}
/*