Files
rust/tests/ui/eii/dylib_needs_impl.stderr
T
bjorn3 860813dd9d Require EIIs to be defined when we compile a rust dylib
The linker will complain about undefined symbols otherwise and on object
file formats with two level namespaces (Mach-O and PE/COFF) it is
required to know which dylib a symbol will be imported from when linking
a dylib or executable.
2026-05-15 15:49:35 +02:00

11 lines
338 B
Plaintext

error: `#[eii1]` required, but not found
--> $DIR/dylib_needs_impl.rs:6:7
|
LL | #[eii(eii1)]
| ^^^^ expected because `#[eii1]` was declared here in crate `dylib_needs_impl`
|
= help: expected at least one implementation in crate `dylib_needs_impl` or any of its dependencies
error: aborting due to 1 previous error