mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 01:17:27 +00:00
Merge #4247
4247: Fix pub(self) visibility? r=matklad a=DianaNites Clippy complained about it and it seems wrong, copy paste error? Co-authored-by: Diana <5275194+DianaNites@users.noreply.github.com>
This commit is contained in:
commit
0b59be5747
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ impl ast::Visibility {
|
||||||
} else if self.super_token().is_some() {
|
} else if self.super_token().is_some() {
|
||||||
VisibilityKind::PubSuper
|
VisibilityKind::PubSuper
|
||||||
} else if self.self_token().is_some() {
|
} else if self.self_token().is_some() {
|
||||||
VisibilityKind::PubSuper
|
VisibilityKind::PubSelf
|
||||||
} else {
|
} else {
|
||||||
VisibilityKind::Pub
|
VisibilityKind::Pub
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue