From d710987acc5fd231acd436a3b9fd6ac0aeb2bff0 Mon Sep 17 00:00:00 2001 From: ArthurBrussee Date: Wed, 17 Jan 2024 22:47:49 +0000 Subject: [PATCH] Update error golden (MSRV bump, guess 1.75 has a better error message) --- .../tests/deref_mut_derive/missing_deref.fail.stderr | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crates/bevy_macros_compile_fail_tests/tests/deref_mut_derive/missing_deref.fail.stderr b/crates/bevy_macros_compile_fail_tests/tests/deref_mut_derive/missing_deref.fail.stderr index 3e11d49532e94..d4cfc71d7a920 100644 --- a/crates/bevy_macros_compile_fail_tests/tests/deref_mut_derive/missing_deref.fail.stderr +++ b/crates/bevy_macros_compile_fail_tests/tests/deref_mut_derive/missing_deref.fail.stderr @@ -6,6 +6,9 @@ error[E0277]: the trait bound `TupleStruct: Deref` is not satisfied | note: required by a bound in `DerefMut` --> $RUST/core/src/ops/deref.rs + | + | pub trait DerefMut: Deref { + | ^^^^^ required by this bound in `DerefMut` error[E0277]: the trait bound `Struct: Deref` is not satisfied --> tests/deref_mut_derive/missing_deref.fail.rs:7:8 @@ -15,6 +18,9 @@ error[E0277]: the trait bound `Struct: Deref` is not satisfied | note: required by a bound in `DerefMut` --> $RUST/core/src/ops/deref.rs + | + | pub trait DerefMut: Deref { + | ^^^^^ required by this bound in `DerefMut` error[E0277]: the trait bound `TupleStruct: Deref` is not satisfied --> tests/deref_mut_derive/missing_deref.fail.rs:3:10