You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The range and first inner variable have the type {unknown}. Meanwhile the second inner variable (which uses a type from core) has the correct i32 type. Additionally the as_ptr_range method was not suggested when typing and hovering does not provide any docs.
If the rust-analyser target is set to mipsel-sony-psx (without the .json, e.g. the official rust target), even with all other settings the same (still nightly with build-std) the types work again. The JSON file is a direct copy of the official target generated using:
I didn't originally get this issue with this target specifically (hence why I needed a custom target) but using one of the official targets copied into a JSON ruled out any issues with the target config.
The text was updated successfully, but these errors were encountered:
Found some more oddities. Associated types don't seem to be working either. Doing <alloc::rc::Rc<i32> as Deref>::Target doesn't simplify to i32 but <core::cell::Ref<i32> as Deref>::Target does. Also if I add the following:
Then foobardoes show up in suggestions and hover, which implies rust-analyser does know that Rc/Vec implement Deref, just doesn't know the methods/types they get because of that. Instead limiting the above impl to T: Deref<Target = i32> instead removes foobar from suggestions on Rc<i32>, likely because it doesn't know about the associated type.
Anyway I'm gonna stop playing around with this for tonight. Hopefully the information is useful :)
rust-analyzer version: rust-analyzer version: 0.4.2355-standalone (3ed13b4 2025-03-24) [~/.vscode/extensions/rust-lang.rust-analyzer-0.4.2355-darwin-arm64/server/rust-analyzer]
I also tested with the non pre-release version
rustc version: rustc 1.87.0-nightly (f8c27dfe1 2025-03-24)
editor or extension: VSCode, release and pre-release
relevant settings:
"rust-analyzer.cargo.target": "mipsel-sony-psx.json"
repository link (if public, optional): https://github.com/matanui159/rust-analyzer-bug
code snippet to reproduce:
The
range
and firstinner
variable have the type{unknown}
. Meanwhile the secondinner
variable (which uses a type fromcore
) has the correcti32
type. Additionally theas_ptr_range
method was not suggested when typing and hovering does not provide any docs.If the rust-analyser target is set to
mipsel-sony-psx
(without the.json
, e.g. the official rust target), even with all other settings the same (still nightly withbuild-std
) the types work again. The JSON file is a direct copy of the official target generated using:I didn't originally get this issue with this target specifically (hence why I needed a custom target) but using one of the official targets copied into a JSON ruled out any issues with the target config.
The text was updated successfully, but these errors were encountered: