summaryrefslogtreecommitdiffstats
path: root/tests/ui/unwind-abis/ffi-unwind-calls-lint.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unwind-abis/ffi-unwind-calls-lint.stderr')
-rw-r--r--tests/ui/unwind-abis/ffi-unwind-calls-lint.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/unwind-abis/ffi-unwind-calls-lint.stderr b/tests/ui/unwind-abis/ffi-unwind-calls-lint.stderr
new file mode 100644
index 000000000..937a2b3df
--- /dev/null
+++ b/tests/ui/unwind-abis/ffi-unwind-calls-lint.stderr
@@ -0,0 +1,20 @@
+warning: call to foreign function with FFI-unwind ABI
+ --> $DIR/ffi-unwind-calls-lint.rs:20:14
+ |
+LL | unsafe { foo(); }
+ | ^^^^^ call to foreign function with FFI-unwind ABI
+ |
+note: the lint level is defined here
+ --> $DIR/ffi-unwind-calls-lint.rs:5:9
+ |
+LL | #![warn(ffi_unwind_calls)]
+ | ^^^^^^^^^^^^^^^^
+
+warning: call to function pointer with FFI-unwind ABI
+ --> $DIR/ffi-unwind-calls-lint.rs:24:5
+ |
+LL | ptr();
+ | ^^^^^ call to function pointer with FFI-unwind ABI
+
+warning: 2 warnings emitted
+