1package a
2
3type Doer[T any] interface {
4	Do() T
5}
6