mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 22:31:43 +00:00
Don't store supertraits in ItemTree
This commit is contained in:
parent
d0a4ba294c
commit
2268a220e4
6 changed files with 3 additions and 17 deletions
|
@ -180,7 +180,7 @@ trait Tr: SuperTrait + 'lifetime {
|
|||
_: (),
|
||||
) -> ();
|
||||
|
||||
pub(self) trait Tr<Self>: SuperTrait + 'lifetime
|
||||
pub(self) trait Tr<Self>
|
||||
where
|
||||
Self: SuperTrait,
|
||||
Self: 'lifetime
|
||||
|
@ -350,7 +350,7 @@ trait Tr<'a, T: 'a>: Super {}
|
|||
pub(self) union Union<'a, T, const U: u8> {
|
||||
}
|
||||
|
||||
pub(self) trait Tr<'a, Self, T>: Super
|
||||
pub(self) trait Tr<'a, Self, T>
|
||||
where
|
||||
Self: Super,
|
||||
T: 'a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue