1(assert_unlinkable
2  (component
3    (import "undefined-name" (core module))
4  )
5  "was not found")
6(component $i)
7(component
8  (import "i" (instance))
9)
10(assert_unlinkable
11  (component (import "i" (core module)))
12  "expected module found instance")
13(assert_unlinkable
14  (component (import "i" (func)))
15  "expected function found instance")
16(assert_unlinkable
17  (component (import "i" (instance (export "x" (func)))))
18  "was not found")
19