Skip to content

Commit 7c0c27b

Browse files
mivertowskiclaude
andcommitted
test(derive): update compile-fail stderr for Rust 1.94.1
Regenerate trybuild expected error output for current stable Rust. Error messages changed slightly between versions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a6590c7 commit 7c0c27b

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

crates/ringkernel-derive/tests/compile_fail/control_block_state_without_copy.stderr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error[E0277]: the trait bound `NotCopyableState: std::marker::Copy` is not satisfied
1+
error[E0277]: the trait bound `NotCopyableState: Copy` is not satisfied
22
--> tests/compile_fail/control_block_state_without_copy.rs:6:8
33
|
44
6 | struct NotCopyableState {
55
| ^^^^^^^^^^^^^^^^ unsatisfied trait bound
66
|
7-
help: the trait `std::marker::Copy` is not implemented for `NotCopyableState`
7+
help: the trait `Copy` is not implemented for `NotCopyableState`
88
--> tests/compile_fail/control_block_state_without_copy.rs:6:1
99
|
1010
6 | struct NotCopyableState {
@@ -15,13 +15,13 @@ note: required by a bound in `Pod`
1515
| pub unsafe trait Pod: Zeroable + Copy + 'static {}
1616
| ^^^^ required by this bound in `Pod`
1717

18-
error[E0277]: the trait bound `NotCopyableState: std::marker::Copy` is not satisfied
18+
error[E0277]: the trait bound `NotCopyableState: Copy` is not satisfied
1919
--> tests/compile_fail/control_block_state_without_copy.rs:6:8
2020
|
2121
6 | struct NotCopyableState {
2222
| ^^^^^^^^^^^^^^^^ unsatisfied trait bound
2323
|
24-
help: the trait `std::marker::Copy` is not implemented for `NotCopyableState`
24+
help: the trait `Copy` is not implemented for `NotCopyableState`
2525
--> tests/compile_fail/control_block_state_without_copy.rs:6:1
2626
|
2727
6 | struct NotCopyableState {
@@ -32,13 +32,13 @@ note: required by a bound in `EmbeddedState`
3232
| pub trait EmbeddedState: Pod + Zeroable + Default + Copy + Send + Sync + 'static {
3333
| ^^^^ required by this bound in `EmbeddedState`
3434

35-
error[E0277]: the trait bound `NotCopyableState: std::marker::Copy` is not satisfied
35+
error[E0277]: the trait bound `NotCopyableState: Copy` is not satisfied
3636
--> tests/compile_fail/control_block_state_without_copy.rs:6:8
3737
|
3838
6 | struct NotCopyableState {
3939
| ^^^^^^^^^^^^^^^^ unsatisfied trait bound
4040
|
41-
help: the trait `std::marker::Copy` is not implemented for `NotCopyableState`
41+
help: the trait `Copy` is not implemented for `NotCopyableState`
4242
--> tests/compile_fail/control_block_state_without_copy.rs:6:1
4343
|
4444
6 | struct NotCopyableState {

crates/ringkernel-derive/tests/compile_fail/gpu_type_without_copy.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error[E0277]: the trait bound `NotCopyable: std::marker::Copy` is not satisfied
1+
error[E0277]: the trait bound `NotCopyable: Copy` is not satisfied
22
--> tests/compile_fail/gpu_type_without_copy.rs:7:8
33
|
44
7 | struct NotCopyable {
55
| ^^^^^^^^^^^ unsatisfied trait bound
66
|
7-
help: the trait `std::marker::Copy` is not implemented for `NotCopyable`
7+
help: the trait `Copy` is not implemented for `NotCopyable`
88
--> tests/compile_fail/gpu_type_without_copy.rs:7:1
99
|
1010
7 | struct NotCopyable {
@@ -15,13 +15,13 @@ note: required by a bound in `Pod`
1515
| pub unsafe trait Pod: Zeroable + Copy + 'static {}
1616
| ^^^^ required by this bound in `Pod`
1717

18-
error[E0277]: the trait bound `NotCopyable: std::marker::Copy` is not satisfied
18+
error[E0277]: the trait bound `NotCopyable: Copy` is not satisfied
1919
--> tests/compile_fail/gpu_type_without_copy.rs:7:8
2020
|
2121
7 | struct NotCopyable {
2222
| ^^^^^^^^^^^ unsatisfied trait bound
2323
|
24-
help: the trait `std::marker::Copy` is not implemented for `NotCopyable`
24+
help: the trait `Copy` is not implemented for `NotCopyable`
2525
--> tests/compile_fail/gpu_type_without_copy.rs:7:1
2626
|
2727
7 | struct NotCopyable {

0 commit comments

Comments
 (0)