mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
invert if
This commit is contained in:
parent
cf821cc332
commit
07de8ea165
1 changed files with 3 additions and 3 deletions
|
@ -159,10 +159,10 @@ impl PerNs {
|
||||||
AdtId::UnionId(_) => PerNs::types(def, v),
|
AdtId::UnionId(_) => PerNs::types(def, v),
|
||||||
AdtId::EnumId(_) => PerNs::types(def, v),
|
AdtId::EnumId(_) => PerNs::types(def, v),
|
||||||
AdtId::StructId(_) => {
|
AdtId::StructId(_) => {
|
||||||
if !has_constructor {
|
if has_constructor {
|
||||||
PerNs::types(def, v)
|
|
||||||
} else {
|
|
||||||
PerNs::both(def, def, v)
|
PerNs::both(def, def, v)
|
||||||
|
} else {
|
||||||
|
PerNs::types(def, v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue