De http://golang.org/src/pkg/database/sql/driver/types.go :
type ValueConverter interface {
// ConvertValue converts a value to a driver Value.
ConvertValue(v interface{}) (Value, error)
}
var Bool boolType
type boolType struct{}
var _ ValueConverter = boolType{} // line 58
func (boolType) String() string { return "Bool" }
func (boolType) ConvertValue(src interface{}) (Value, error) {....}
Je sais que ValueConverter est un nom d'interface. La ligne 58 semble déclarer que boolType implémente l'interface ValueConverter, mais est-ce nécessaire ? J'ai supprimé la ligne 58 et le code fonctionne bien.