rust/tests/ui/unwind-abis/ffi-unwind-calls-lint.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
553 B
Plaintext
Raw Normal View History

warning: call to foreign function with FFI-unwind ABI
2022-12-23 07:50:05 +00:00
--> $DIR/ffi-unwind-calls-lint.rs:19:14
|
LL | unsafe { foo(); }
| ^^^^^ call to foreign function with FFI-unwind ABI
|
note: the lint level is defined here
2022-12-23 07:50:05 +00:00
--> $DIR/ffi-unwind-calls-lint.rs:4:9
|
LL | #![warn(ffi_unwind_calls)]
| ^^^^^^^^^^^^^^^^
warning: call to function pointer with FFI-unwind ABI
2022-12-23 07:50:05 +00:00
--> $DIR/ffi-unwind-calls-lint.rs:23:5
|
LL | ptr();
| ^^^^^ call to function pointer with FFI-unwind ABI
warning: 2 warnings emitted