Skip to content

Commit 678a650

Browse files
committed
Update compile fail test outputs
1 parent 4e069c3 commit 678a650

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/compile-fail/incomplete_persistence.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0277]: the trait bound `NotPersistable<'_>: Serialize` is not satisfied
1+
error[E0277]: the trait bound `NotPersistable<'_>: serde::Serialize` is not satisfied
22
--> tests/compile-fail/incomplete_persistence.rs:1:1
33
|
44
1 | #[salsa::tracked(persist)]
@@ -22,7 +22,7 @@ error[E0277]: the trait bound `NotPersistable<'_>: Serialize` is not satisfied
2222
= note: required for `(NotPersistable<'_>,)` to implement `Serialize`
2323
= note: this error originates in the macro `salsa::plumbing::setup_tracked_struct` which comes from the expansion of the attribute macro `salsa::tracked` (in Nightly builds, run with -Z macro-backtrace for more info)
2424

25-
error[E0277]: the trait bound `NotPersistable<'_>: Deserialize<'_>` is not satisfied
25+
error[E0277]: the trait bound `NotPersistable<'_>: serde::Deserialize<'de>` is not satisfied
2626
--> tests/compile-fail/incomplete_persistence.rs:1:1
2727
|
2828
1 | #[salsa::tracked(persist)]
@@ -43,7 +43,7 @@ error[E0277]: the trait bound `NotPersistable<'_>: Deserialize<'_>` is not satis
4343
= note: required for `(NotPersistable<'_>,)` to implement `Deserialize<'_>`
4444
= note: this error originates in the macro `salsa::plumbing::setup_tracked_struct` which comes from the expansion of the attribute macro `salsa::tracked` (in Nightly builds, run with -Z macro-backtrace for more info)
4545

46-
error[E0277]: the trait bound `NotPersistable<'db>: Serialize` is not satisfied
46+
error[E0277]: the trait bound `NotPersistable<'db>: serde::Serialize` is not satisfied
4747
--> tests/compile-fail/incomplete_persistence.rs:12:45
4848
|
4949
12 | fn query(_db: &dyn salsa::Database, _input: NotPersistable<'_>) {}
@@ -71,7 +71,7 @@ note: required by a bound in `query_input_is_persistable`
7171
| required by this bound in `query_input_is_persistable`
7272
= note: this error originates in the macro `salsa::plumbing::setup_tracked_fn` which comes from the expansion of the attribute macro `salsa::tracked` (in Nightly builds, run with -Z macro-backtrace for more info)
7373

74-
error[E0277]: the trait bound `for<'de> NotPersistable<'db>: Deserialize<'de>` is not satisfied
74+
error[E0277]: the trait bound `NotPersistable<'db>: serde::Deserialize<'de>` is not satisfied
7575
--> tests/compile-fail/incomplete_persistence.rs:12:45
7676
|
7777
12 | fn query(_db: &dyn salsa::Database, _input: NotPersistable<'_>) {}

0 commit comments

Comments
 (0)