E0044

E0044#

Warning name: invalid_inline_wasm

Inline wasm code is invalid.

The inline wasm code refers to unbound function.

Erroneous example#

///|
extern "wasm" fn g() =
  #| (func $g (call $does_not_exist))

Suggestion#

If you know that such a function exists, manually suppress the warning. Note that a compilation error may result in an internal compiler error.

moon.pkg#
warnings = "-invalid_inline_wasm"