blob: a258f7202dab19c304f41ba2e13a4806dac59d98 [file] [log] [blame]
package stub
import "io"
// This test ensures that a variable declaration that
// has multiple values on the same line can still be
// analyzed correctly to target the interface implementation
// diagnostic.
var one, two, three io.Reader = nil, &multiVar{}, nil //@suggestedfix("&", "quickfix", "")
type multiVar struct{}