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
Hello. The following code makes the compiler freezes:
struct Node { value: i32, left: Option<Node>, right: Option<Node>, } fn main() { println!("Hello, world!"); }
(the version with Option<Box<Node>> works fine, though)
Option<Box<Node>>
Running cargo build takes forever. I use rustc 1.8.0 on ArchLinux.
cargo build
rustc 1.8.0
Thanks to fix this issue.
The text was updated successfully, but these errors were encountered:
Should be fixed on beta and nightly. See also #32326 #32619 #33144 #33180
Sorry, something went wrong.
Sorry, I had not found this issue.
No branches or pull requests
Hello.
The following code makes the compiler freezes:
(the version with
Option<Box<Node>>
works fine, though)Running
cargo build
takes forever. I userustc 1.8.0
on ArchLinux.Thanks to fix this issue.
The text was updated successfully, but these errors were encountered: