mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 11:31:15 +00:00
Merge #11926
11926: fix: Fix panics with `#[cfg]`'d-out `self` parameter r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <jonas.schievink@ferrous-systems.com>
This commit is contained in:
commit
82fa6ad245
@ -56,6 +56,22 @@ impl FunctionData {
|
|||||||
if is_varargs {
|
if is_varargs {
|
||||||
flags.bits |= FnFlags::IS_VARARGS;
|
flags.bits |= FnFlags::IS_VARARGS;
|
||||||
}
|
}
|
||||||
|
if flags.bits & FnFlags::HAS_SELF_PARAM != 0 {
|
||||||
|
// If there's a self param in the syntax, but it is cfg'd out, remove the flag.
|
||||||
|
let is_cfgd_out = match func.params.clone().next() {
|
||||||
|
Some(param) => {
|
||||||
|
!item_tree.attrs(db, krate, param.into()).is_cfg_enabled(cfg_options)
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
stdx::never!("fn HAS_SELF_PARAM but no parameters allocated");
|
||||||
|
true
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if is_cfgd_out {
|
||||||
|
cov_mark::hit!(cfgd_out_self_param);
|
||||||
|
flags.bits &= !FnFlags::HAS_SELF_PARAM;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let legacy_const_generics_indices = item_tree
|
let legacy_const_generics_indices = item_tree
|
||||||
.attrs(db, krate, ModItem::from(loc.id.value).into())
|
.attrs(db, krate, ModItem::from(loc.id.value).into())
|
||||||
|
@ -1488,3 +1488,20 @@ fn test<T: Crash>() {
|
|||||||
"#,
|
"#,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn cfgd_out_self_param() {
|
||||||
|
cov_mark::check!(cfgd_out_self_param);
|
||||||
|
check_no_mismatches(
|
||||||
|
r#"
|
||||||
|
struct S;
|
||||||
|
impl S {
|
||||||
|
fn f(#[cfg(never)] &self) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn f(s: S) {
|
||||||
|
s.f();
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user