diff --git a/type-safe-builder-macro/tests/compile_failure/not_respecting_where_clause.stderr b/type-safe-builder-macro/tests/compile_failure/not_respecting_where_clause.stderr index bb02a27..e626877 100644 --- a/type-safe-builder-macro/tests/compile_failure/not_respecting_where_clause.stderr +++ b/type-safe-builder-macro/tests/compile_failure/not_respecting_where_clause.stderr @@ -18,7 +18,7 @@ error[E0277]: the trait bound `StructWithoutRequiredTrait: TraitForField` is not --> tests/compile_failure/not_respecting_where_clause.rs:17:20 | 17 | let _builder = GenericStructBuilder::builder().f1(StructWithoutRequiredTrait {}); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `TraitForField` is not implemented for `StructWithoutRequiredTrait` + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `TraitForField` is not implemented for `StructWithoutRequiredTrait` | = help: the trait `TraitForField` is implemented for `FieldStruct` note: required by a bound in `GenericStructBuilder::builder`