1
Fork 0

Update compiler/rustc_error_codes/src/error_codes/E0582.md

Co-authored-by: Felix S Klock II <pnkfelix@pnkfx.org>
This commit is contained in:
Oliver Killane 2024-05-15 00:07:21 +01:00 committed by GitHub
parent f3dcf65985
commit a5d0988a88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,7 @@ where
f: F
}
```
This is as `Foo::Assoc<'a>` could be implemented by a type that does not use
The latter scenario encounters this error because `Foo::Assoc<'a>` could be implemented by a type that does not use
the `'a` parameter, so there is no guarentee that `X::Assoc<'a>` actually uses
`'a`.