Sign in
go
/
website
/
47aa77ee5c8e76cb4901fd5877cc2abd39497bd7
/
.
/
_content
/
talks
/
2014
/
playground
/
heap.go
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}
}
}