(module
 (type $second-super (sub (func)))

 (import "primary" "sub" (func $import (type $second-super)))

 (func $caller (export "caller")
  (call_ref $second-super
   (ref.func $import)
  )
 )
)

