summaryrefslogtreecommitdiff
path: root/vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/input.go
blob: d05f6a7f148dddf51260b1a14d5c4338563433bc (plain)
1
2
3
4
5
6
7
8
9
package pkg

type Arg interface {
	Foo() int
}

type Intf interface {
	F() Arg
}