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

     1  package main
     2  
     3  import "crypto/rsa"
     4  
     5  func main() {
     6  	var pKey interface{} = &rsa.PublicKey{}
     7  
     8  	if _, ok := pKey.(*rsa.PublicKey); ok {
     9  		println("ok")
    10  	} else {
    11  		println("nok")
    12  	}
    13  }
    14  
    15  // Output:
    16  // ok