Rellum Rellum

S0144: unknown extern ABI

Generated from rellum-diagnostics/src/db.rs.

Explanation

An extern block declares functions from another binary interface. This milestone only supports the C ABI, written as extern "C" { ... }.

Common causes

Canonical fixes

Before:

extern "stdcall" { fn f() : Unit }

After:

extern "C" { fn f() : Unit }

Code example

extern "stdcall" { fn f() : Unit }