Skip to content

Instantly share code, notes, and snippets.

@ignatov
Created March 6, 2017 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ignatov/afd91ef83143e1d451aa503a8a4ec215 to your computer and use it in GitHub Desktop.
Save ignatov/afd91ef83143e1d451aa503a8a4ec215 to your computer and use it in GitHub Desktop.
package main
type I1 interface {
foo() int
bar() int
}
type I2 interface {
foo() int
baz() int
}
type T11 struct { }
func (T11) foo() int {
panic("implement me")
}
func (T11) baz() int {
panic("implement me")
}
func (T11) bar() int {
panic("implement me")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment