bradleyfalzon / apicompat

apicompat checks recent changes to a Go project for backwards incompatible changes
https://abicheck.bradleyf.id.au
MIT License
179 stars 5 forks source link

Embedded interface to non embedded isn't a breaking change #20

Closed bradleyfalzon closed 8 years ago

bradleyfalzon commented 8 years ago

Pretty sure this is not a breaking change:

rev2:example.go:7: breaking change members added
    type A interface {
        io.Reader
    }
    type A interface {
        Read(p []byte) (n int, err error)
    }
bradleyfalzon commented 8 years ago

Fixed in ec81b5d6c23e392367d86247ad00d6c3d4bc55cd