We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b963a2 commit a5ddfaeCopy full SHA for a5ddfae
cobalt-ast/src/types/agg.rs
@@ -766,7 +766,8 @@ impl Type for SizedArray {
766
}
767
768
fn _can_ref_iconv(&'static self, target: TypeRef, ctx: &CompCtx) -> bool {
769
- eprintln!("self: {self}, target: {target}");
+ eprintln!("self: {self:?}, target: {target:?}");
770
+ eprintln!("target kind: {}, ptr kind: {}", target.kind(), types::Pointer::KIND);
771
dbg!(target.is_and::<types::Pointer>(|r| r.base() == self.elem()))
772
773
fn _can_refmut_iconv(&'static self, target: TypeRef, ctx: &CompCtx) -> bool {
0 commit comments