blob: bd83db1d229159a349a052735aaac4907afcfeca [file] [log] [blame]
package main
type list struct {
buf [1000]byte
next *list
}
func main() {
var l *list
for {
l = &list{next: l}
}
}