2022-05-20 15:52:00 -05:00
|
|
|
warning: call to foreign function with FFI-unwind ABI
|
2022-09-22 08:18:17 -05:00
|
|
|
--> $DIR/ffi-unwind-calls-lint.rs:20:14
|
2022-05-20 15:52:00 -05:00
|
|
|
|
|
|
|
|
LL | unsafe { foo(); }
|
|
|
|
| ^^^^^ call to foreign function with FFI-unwind ABI
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
2022-09-22 08:18:17 -05:00
|
|
|
--> $DIR/ffi-unwind-calls-lint.rs:5:9
|
2022-05-20 15:52:00 -05:00
|
|
|
|
|
|
|
|
LL | #![warn(ffi_unwind_calls)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
warning: call to function pointer with FFI-unwind ABI
|
2022-09-22 08:18:17 -05:00
|
|
|
--> $DIR/ffi-unwind-calls-lint.rs:24:5
|
2022-05-20 15:52:00 -05:00
|
|
|
|
|
|
|
|
LL | ptr();
|
|
|
|
| ^^^^^ call to function pointer with FFI-unwind ABI
|
|
|
|
|
|
|
|
warning: 2 warnings emitted
|
|
|
|
|