We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See discussion here: https://rust-lang.zulipchat.com/#narrow/stream/144729-wg-traits/topic/meeting.202020-09-29/near/211676604
Needed for rust-lang/rust#77187
For fundamental types like Box<T, U>, we should generate rules:
Box<T, U>
forall<T, U> { IsLocal(Box<T>) :- IsLocal(T) } forall<T, U> { IsLocal(Box<T>) :- IsLocal(U) } forall<T, U> { IsUpstream(Box<T, U>) :- IsUpstream(T), IsUpstream(U) } forall<T, U> { DownstreamType(Box<T, U>) :- DownstreamType(T). } forall<T, U> { DownstreamType(Box<T, U>) :- DownstreamType(U). }
The text was updated successfully, but these errors were encountered:
Box
c74da51
Auto merge of rust-lang#77187 - TimDiekmann:box-alloc, r=Amanieu
fd54259
Support custom allocators in `Box` r? `@Amanieu` This pull request requires a crater run. ### Prior work: - rust-lang#71873 - rust-lang#58457 - [`alloc-wg`](https://github.com/TimDiekmann/alloc-wg)-crate Currently blocked on: - ~rust-lang#77118~ - ~rust-lang/chalk#615 (rust-lang#77515)~
Auto merge of #77187 - TimDiekmann:box-alloc, r=Amanieu
066dd41
Support custom allocators in `Box` r? `@Amanieu` This pull request requires a crater run. ### Prior work: - #71873 - #58457 - [`alloc-wg`](https://github.com/TimDiekmann/alloc-wg)-crate Currently blocked on: - ~#77118~ - ~rust-lang/chalk#615 (#77515)~
Successfully merging a pull request may close this issue.
See discussion here: https://rust-lang.zulipchat.com/#narrow/stream/144729-wg-traits/topic/meeting.202020-09-29/near/211676604
Needed for rust-lang/rust#77187
For fundamental types like
Box<T, U>
, we should generate rules:The text was updated successfully, but these errors were encountered: