about summary refs log tree commit diff
path: root/tests/ui/error-codes
diff options
context:
space:
mode:
authorSoveu <marx.tomasz@gmail.com>2024-04-23 22:14:41 +0200
committerSoveu <marx.tomasz@gmail.com>2024-11-27 22:21:33 +0100
commit685f189b4307435b83d625fea397ef36dff4e955 (patch)
tree3fdc6bd3c89c061c361fda7245a87fcafab66523 /tests/ui/error-codes
parentf5d18576856ef45d1e47de79889ae7db9d1afa29 (diff)
downloadrust-685f189b4307435b83d625fea397ef36dff4e955.tar.gz
rust-685f189b4307435b83d625fea397ef36dff4e955.zip
Stabilize `extended_varargs_abi_support`
Diffstat (limited to 'tests/ui/error-codes')
-rw-r--r--tests/ui/error-codes/E0045.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/error-codes/E0045.stderr b/tests/ui/error-codes/E0045.stderr
index 25b2f2654da..b8ee31a4049 100644
--- a/tests/ui/error-codes/E0045.stderr
+++ b/tests/ui/error-codes/E0045.stderr
@@ -1,4 +1,4 @@
-error[E0045]: C-variadic function must have a compatible calling convention, like `C` or `cdecl`
+error[E0045]: C-variadic function must have a compatible calling convention, like `C`, `cdecl`, `system`, `aapcs`, `win64`, `sysv64` or `efiapi`
   --> $DIR/E0045.rs:1:17
    |
 LL | extern "Rust" { fn foo(x: u8, ...); }