package main type Strummer interface { Strum() } type Bocchi struct { Guitar string } var _ Strummer = (*Bocchi)(nil)