askama/testing/tests/ui/pluralize.stderr
Guillaume Gomez 7947cdcafb Fix ui test
2025-01-12 19:43:39 +01:00

19 lines
669 B
Plaintext

error[E0277]: the trait bound `str: PluralizeCount` is not satisfied
--> tests/ui/pluralize.rs:3:10
|
3 | #[derive(Template)]
| ^^^^^^^^ the trait `PluralizeCount` is not implemented for `str`
|
= help: the following other types implement trait `PluralizeCount`:
&T
&mut T
Arc<T>
Box<T>
MutexGuard<'_, T>
NonZero<i128>
NonZero<i16>
NonZero<i32>
and $N others
= note: required for `&str` to implement `PluralizeCount`
= note: this error originates in the derive macro `Template` (in Nightly builds, run with -Z macro-backtrace for more info)