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
pub struct X { a : X, b : X }
This causes an infinite loop when building, unlike:
pub struct X { a : X }
where you get a error: recursive typeXhas infinite size [E0072].
error: recursive type
has infinite size [E0072]
This happens on stable rustc 1.8.0 (db2939409 2016-04-11).
rustc 1.8.0 (db2939409 2016-04-11)
The text was updated successfully, but these errors were encountered:
This is fixed on nightly. Please check if bugs exist on the current nightly before opening an issue :)
Sorry, something went wrong.
I see, sorry.
No branches or pull requests
This causes an infinite loop when building, unlike:
where you get a
error: recursive type
Xhas infinite size [E0072]
.This happens on stable
rustc 1.8.0 (db2939409 2016-04-11)
.The text was updated successfully, but these errors were encountered: