]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unwind-abis/ffi-unwind-calls-lint.stderr
Auto merge of #101893 - oli-obk:lift_derive, r=lcnr
[rust.git] / src / test / ui / unwind-abis / ffi-unwind-calls-lint.stderr
1 warning: call to foreign function with FFI-unwind ABI
2   --> $DIR/ffi-unwind-calls-lint.rs:20:14
3    |
4 LL |     unsafe { foo(); }
5    |              ^^^^^ call to foreign function with FFI-unwind ABI
6    |
7 note: the lint level is defined here
8   --> $DIR/ffi-unwind-calls-lint.rs:5:9
9    |
10 LL | #![warn(ffi_unwind_calls)]
11    |         ^^^^^^^^^^^^^^^^
12
13 warning: call to function pointer with FFI-unwind ABI
14   --> $DIR/ffi-unwind-calls-lint.rs:24:5
15    |
16 LL |     ptr();
17    |     ^^^^^ call to function pointer with FFI-unwind ABI
18
19 warning: 2 warnings emitted
20