fix make HirDisplay format lifetimes first

This commit is contained in:
dfireBird 2024-03-13 21:07:20 +05:30
parent 8d08b337fa
commit a555e95c9a
No known key found for this signature in database
GPG key ID: 26D522CA5FC2B93D
6 changed files with 32 additions and 13 deletions

View file

@ -614,7 +614,7 @@ struct Foo<'a, T> {
}
impl<'a, T> Foo<'a, T> {
$0fn bar(self, mut b: Vec<&'a Bar<T, 'a>>) -> &'a Bar<T, 'a> {
$0fn bar(self, mut b: Vec<&'a Bar<'a, T>>) -> &'a Bar<'a, T> {
self.field.bar(b)
}
}