blob: 95576e7bb2ceff2571260c31469d339fbef589dd [file] [log] [blame]
package const_length
import "math"
//go:generate mockgen -package const_length -destination mock.go -source input.go
const C = 2
type I interface {
Foo() [C]int
Bar() [2]int
Baz() [math.MaxInt8]int
}