2024-06-08 18:39:09 -05:00
|
|
|
error: unsafe attribute used without unsafe
|
2024-08-07 01:36:28 -05:00
|
|
|
--> $DIR/unsafe-attributes.rs:8:3
|
2024-06-08 18:39:09 -05:00
|
|
|
|
|
|
|
|
LL | #[no_mangle]
|
|
|
|
| ^^^^^^^^^ usage of unsafe attribute
|
|
|
|
|
|
|
|
|
help: wrap the attribute in `unsafe(...)`
|
|
|
|
|
|
|
|
|
LL | #[unsafe(no_mangle)]
|
|
|
|
| +++++++ +
|
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
|