summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug094.go
AgeCommit message (Collapse)AuthorFilesLines
2009-09-14fix "declared and not used" in tests;Russ Cox1-1/+2
also template/template.go, missed last time. R=r DELTA=116 (61 added, 10 deleted, 45 changed) OCL=34620 CL=34622
2008-10-06change type names to go live at the name, so thatRuss Cox1-0/+31
type T struct { next *T } and type T *struct { next T } are valid without needing forward declarations. add "type T struct" syntax for forward struct declarations. add "type T interface" syntax, but commented out (need to fix semicolons first) R=ken DELTA=452 (259 added, 115 deleted, 78 changed) OCL=16580 CL=16584