# E0044

Warning name: `invalid_inline_wasm`

Inline wasm code is invalid.

The inline wasm code refers to unbound function.

## Erroneous example

```{literalinclude} /sources/error_codes/0044_error/top.mbt
:language: moonbit
```

## 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](./E1001.md).

```{literalinclude} /sources/error_codes/0044_fixed/moon.pkg
:caption: moon.pkg
:language: moonbit
```
