Update trybuild tests

Rust 1.68 changed how the help suggestion text renders, showing a diff
for the suggested change.
This commit is contained in:
DropDemBits 2023-03-15 10:37:08 -04:00
parent ef7c0f12c8
commit ee762e8bdf
No known key found for this signature in database
GPG key ID: 7FE02A6C1EDFA075

View file

@ -57,5 +57,8 @@ error[E0412]: cannot find type `Jar1` in this scope
|
26 | #[salsa::input(jar = Jar1)]
| ^^^^ not found in this scope
27 | struct MyInput {
| - help: you might be missing a type parameter: `<Jar1>`
|
help: you might be missing a type parameter
|
27 | struct MyInput<Jar1> {
| ++++++