DEBSOURCES
Skip Quicknav
sources / delve / 1.26.0-2 / _fixtures / genericbp.go
123456789101112
package main import "fmt" func testfn[T any](arg T) { fmt.Println(arg) } func main() { testfn[uint16](1) testfn[float64](2.1) }