fix bug depot:
	1) fix print statements, panic statements (parentheses required)
	2) len is now allowed as a var name (bug053)

R=gri
OCL=14106
CL=14106
diff --git a/test/fixedbugs/bug028.go b/test/fixedbugs/bug028.go
index 57f36e3..7ec016c 100644
--- a/test/fixedbugs/bug028.go
+++ b/test/fixedbugs/bug028.go
@@ -20,7 +20,7 @@
 
 func main() {
 	s := Alloc(7);
-	if s != 5 { panic "bad" }
+	if s != 5 { panic("bad") }
 }
 
 /*