blob: c8fd3031f039215101e06e7b64767b646ddec40b [file] [log] [blame]
// +build ignore,OMIT
package main
type list struct {
buf [100000]byte
next *list
}
func main() {
var l *list
for {
l = &list{next: l}
}
}