Skip to content

Out of memory during compilation #32502

Closed
@alex-dukhno

Description

@alex-dukhno

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions