Skip to content

Commit

Permalink
freshen UI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
scottlamb committed Dec 11, 2024
1 parent 54f6713 commit 4197d35
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions static-xml-derive/tests/ui/field-not-parsetext.stderr
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
error[E0277]: the trait bound `Foo: ParseText` is not satisfied
error[E0277]: the trait bound `Foo: DeserializeElementField` is not satisfied
--> tests/ui/field-not-parsetext.rs:10:5
|
8 | #[derive(Deserialize)]
| ----------- this tail expression is of type `&mut Foo`
9 | struct Outer {
10 | foo: Foo,
| ^^^^^^^^ the trait `ParseText` is not implemented for `Foo`
| ^^^ the trait `ParseText` is not implemented for `Foo`, which is required by `Foo: DeserializeElementField`
|
= help: the following other types implement trait `ParseText`:
String
Expand All @@ -20,11 +20,11 @@ error[E0277]: the trait bound `Foo: ParseText` is not satisfied
= note: required for `Foo` to implement `Deserialize`
= note: required for `Foo` to implement `DeserializeElementField`

error[E0277]: the trait bound `Foo: ParseText` is not satisfied
--> tests/ui/field-not-parsetext.rs:10:5
error[E0277]: the trait bound `Foo: DeserializeElementField` is not satisfied
--> tests/ui/field-not-parsetext.rs:10:10
|
10 | foo: Foo,
| ^^^^^^^^ the trait `ParseText` is not implemented for `Foo`
| ^^^ the trait `ParseText` is not implemented for `Foo`, which is required by `Foo: DeserializeElementField`
|
= help: the following other types implement trait `ParseText`:
String
Expand Down

0 comments on commit 4197d35

Please sign in to comment.