Skip to content

Out of memory during compilation #32502

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
alex-dukhno opened this issue Mar 26, 2016 · 2 comments
Closed

Out of memory during compilation #32502

alex-dukhno opened this issue Mar 26, 2016 · 2 comments

Comments

@alex-dukhno
Copy link

Hi

I got OOM error during compilation following code

struct Node {
    key: isize,
    left: Option<Node>,
    right: Option<Node>,
}

impl Node {
    fn new(key: isize) -> Node {
        Node {
            key: key,
            left: None,
            right: None,
        }
    }
}

fn main() {
    let node = Node::new(1);
}

rustc 1.9.0-nightly (98f0a91 2016-03-23)
binary: rustc
commit-hash: 98f0a91
commit-date: 2016-03-23
host: x86_64-pc-windows-gnu
release: 1.9.0-nightly

I did a simple test on PlayPen today and got playpen: timeout triggered! message on both beta and nightly

@jonas-schievink
Copy link
Contributor

That's #32326

@alex-dukhno
Copy link
Author

Thanks for pointing
I will close this one

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