Closed
Description
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
Labels
No labels