Sen Goroutine i impas w kodzie. Jak to rozwiązać?

http://play.golang.org/p/r92-KtQEGl

Próbuję wykonać ten kod. Zgłasza błąd zakleszczenia.

czego mi brakuje?

package main

import "tour/tree"
import "fmt"

// Walk walks the tree t sending all values
// from the tree to the channel ch.
func Walk(t *tree.Tree, ch chan int){
    var temp chan int
    ch <- t.Value
    if t.Left!=nil{go Walk(t.Left,temp)}
    if t.Right!=nil{go Walk(t.Right,temp)}
    for i := range temp{
        ch <- i
    }
    close(ch)
}

// Same determines whether the trees
// t1 and t2 contain the same values.
func Same(t1, t2 *tree.Tree) bool

questionAnswers(2)

yourAnswerToTheQuestion