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