Closed
Description
When using rust-analyzer on clippy for example, it seems to fail to get a lot of info on functions/types that come from rustc, for example:
#![feature(rustc_private)]
extern crate rustc_lint;
pub fn register_pre_expansion_lints(_store: &mut rustc_lint::LintStore) {}
fn main() {}
Hovering rustc_lint::LintStore
did not provide any type information.
I tried the same with the clippy submodule inside the rustc-repo hoping that could solve it but to no avail.