github.com/traefik/yaegi@v0.15.1/_test/p2/p2.go (about)

     1  package p2
     2  
     3  type I interface {
     4  	isI()
     5  }
     6  
     7  type T struct{}
     8  
     9  func (t *T) isI() {}