coder/scripts/apitypings/testdata/genericslice/genericslice.go

11 lines
102 B
Go

package codersdk
type Bar struct {
Bar string
}
type Foo[R any] struct {
Slice []R
TwoD [][]R
}