summaryrefslogtreecommitdiffstats
path: root/third_party/rust/wast/tests/parse-fail/bad-core-func-alias.wat
blob: c2ebee5ee9590479b71df05977ee713f74afa77e (plain)
1
2
3
4
5
6
7
(component
  (core module $mod (func (export "fun")))
  (core instance $inst (instantiate $mod))
  (alias core export $inst "fun" (core func $fun1))
  (core func $fun2 (alias core export $inst "fun"))
  (core func $fun3 (alias export $inst "fun"))
)