summaryrefslogtreecommitdiffstats
path: root/src/test/ui/abi/issues/issue-22565-rust-call.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/abi/issues/issue-22565-rust-call.stderr26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/ui/abi/issues/issue-22565-rust-call.stderr b/src/test/ui/abi/issues/issue-22565-rust-call.stderr
new file mode 100644
index 000000000..3eee10bc5
--- /dev/null
+++ b/src/test/ui/abi/issues/issue-22565-rust-call.stderr
@@ -0,0 +1,26 @@
+error: functions with the "rust-call" ABI must take a single non-self argument that is a tuple
+ --> $DIR/issue-22565-rust-call.rs:3:1
+ |
+LL | extern "rust-call" fn b(_i: i32) {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: functions with the "rust-call" ABI must take a single non-self argument that is a tuple
+ --> $DIR/issue-22565-rust-call.rs:9:5
+ |
+LL | extern "rust-call" fn b() {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: functions with the "rust-call" ABI must take a single non-self argument that is a tuple
+ --> $DIR/issue-22565-rust-call.rs:16:5
+ |
+LL | extern "rust-call" fn bar() {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: functions with the "rust-call" ABI must take a single non-self argument that is a tuple
+ --> $DIR/issue-22565-rust-call.rs:21:5
+ |
+LL | extern "rust-call" fn a() {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 4 previous errors
+