1-- go.mod -- 2module example.com/generics 3 4go 1.18 5-- a/a.go -- 6package a 7 8type Foo[V any] interface { 9 Value() V 10}
View as plain text