codekingpro's picture
Add files using upload-large-folder tool
da86720 verified
Raw
History Blame Contribute Delete
151 Bytes
package main
import "fmt"
func F[T any](n T) {
fmt.Printf("called\n")
}
func G[T any](n T) {
F(n)
fmt.Printf("after\n")
}
func main() {
G(3)
}