/garbage

tests and garbage

Primary LanguageGo

garbage

tests and garbage

func callPointertoFunc() {
	x := new(func(int) bool)
	*x = func(x int) bool { return false }

	fmt.Println((*x)(4))
}