Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions dropshot/tests/fail/bad_trait_channel21.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ error: functions cannot be both `async` and C-variadic
32 | ...
| ^^^ C-variadic because of this

error: associated functions cannot have a C variable argument list
error: `...` is not supported for non-extern functions
--> tests/fail/bad_trait_channel21.rs:32:9
|
32 | ...
| ^^^
|
= help: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list

error: functions cannot be both `async` and C-variadic
--> tests/fail/bad_trait_channel21.rs:42:5
Expand All @@ -40,11 +42,13 @@ error: functions cannot be both `async` and C-variadic
45 | ...
| ^^^ C-variadic because of this

error: associated functions cannot have a C variable argument list
error: `...` is not supported for non-extern functions
--> tests/fail/bad_trait_channel21.rs:45:9
|
45 | ...
| ^^^
|
= help: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list

error[E0658]: C-variadic functions are unstable
--> tests/fail/bad_trait_channel21.rs:29:5
Expand Down
8 changes: 6 additions & 2 deletions dropshot/tests/fail/bad_trait_endpoint21.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ error: functions cannot be both `async` and C-variadic
33 | ...
| ^^^ C-variadic because of this

error: associated functions cannot have a C variable argument list
error: `...` is not supported for non-extern functions
--> tests/fail/bad_trait_endpoint21.rs:33:9
|
33 | ...
| ^^^
|
= help: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list

error: functions cannot be both `async` and C-variadic
--> tests/fail/bad_trait_endpoint21.rs:43:5
Expand All @@ -43,11 +45,13 @@ error: functions cannot be both `async` and C-variadic
46 | ...
| ^^^ C-variadic because of this

error: associated functions cannot have a C variable argument list
error: `...` is not supported for non-extern functions
--> tests/fail/bad_trait_endpoint21.rs:46:9
|
46 | ...
| ^^^
|
= help: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list

error[E0658]: C-variadic functions are unstable
--> tests/fail/bad_trait_endpoint21.rs:30:5
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# The intent is to keep this updated as new stable versions are relased.

[toolchain]
channel = "1.91.1"
channel = "1.92.0"
profile = "default"
Loading