Source file
test/typeparam/issue47258.go
1
2
3
4
5
6
7 package main
8
9 import (
10 "fmt"
11 )
12
13 type Numeric interface {
14 int32 | int64 | float64 | complex64
15 }
16
17
18 func inc[T Numeric](x T) T {
19 x++
20 return x
21 }
22 func main() {
23 if got, want := inc(int32(5)), int32(6); got != want {
24 panic(fmt.Sprintf("got %d, want %d", got, want))
25 }
26 if got, want := inc(float64(5)), float64(6.0); got != want {
27 panic(fmt.Sprintf("got %d, want %d", got, want))
28 }
29 if got, want := inc(complex64(5)), complex64(6.0); got != want {
30 panic(fmt.Sprintf("got %d, want %d", got, want))
31 }
32 }
33
View as plain text