Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. type A interface {
  2. B
  3. x()
  4. }
  5. type B interface {
  6. C
  7. y()
  8. }
  9. type C interface {
  10. A()
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement