Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/genericbp.go
T
2024-09-19 21:38:24 -04:00

13 lines
134 B
Go

package main
import "fmt"
func testfn[T any](arg T) {
fmt.Println(arg)
}
func main() {
testfn[uint16](1)
testfn[float64](2.1)
}