Deref to type that is also a Receiver to the original type creates an infinite cycle #139394
Labels
F-arbitrary_self_types
`#![feature(arbitrary_self_types)]`
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
Let's say I define a transparent receiver type like this:
And then a type which allows "viewing" itself as a
&CRef<T>
when what you have is a&T
:Then given this:
I expect
flag.get()
to mean something likebut instead I got
https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=e3e560589bf664d37a489d798f41cca5
It's possible this is somehow correct and there's no way to do what I'm trying to do, but if it is I don't see why.
The text was updated successfully, but these errors were encountered: