Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir/src/lib.rs')
| -rw-r--r-- | crates/hir/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index 2ec382be6e..5137bff055 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs @@ -4567,8 +4567,8 @@ impl Type { // FIXME: Document this #[derive(Debug)] pub struct Callable { - pub ty: Type, - pub sig: CallableSig, + ty: Type, + sig: CallableSig, callee: Callee, /// Whether this is a method that was called with method call syntax. pub(crate) is_bound_method: bool, |