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
It seems like this was broken as a result of the recent change to make newtypes structs immediate in certain cases.
struct TestNode(@int); fn mm(_x: &TestNode) {} fn main() { let x = &TestNode(@21); mm(x); }
% rustc foo.rs error: internal compiler error: drop_ty_immediate: non-box ty
The text was updated successfully, but these errors were encountered:
This was found in Servo's rust-css tests.
nominating production ready
Sorry, something went wrong.
Accepted for production-ready
Closing as a duplicate of #9446. I have a fix in the pipeline for this (#9643).
No branches or pull requests
It seems like this was broken as a result of the recent change to make newtypes structs immediate in certain cases.
The text was updated successfully, but these errors were encountered: