Skip to content

Recursive type can't finish compile under 1.8.0 stable. #33144

New issue

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

Closed
jmjoy opened this issue Apr 22, 2016 · 1 comment
Closed

Recursive type can't finish compile under 1.8.0 stable. #33144

jmjoy opened this issue Apr 22, 2016 · 1 comment

Comments

@jmjoy
Copy link

jmjoy commented Apr 22, 2016

pub struct BSortTree<T> {
    data: Option<T>,
    left: Option<BSortTree<T>>,
    right: Option<BSortTree<T>>,
}

Run in playground:
playpen: timeout triggered!

@durka
Copy link
Contributor

durka commented Apr 22, 2016

Fixed in beta and nightly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants