Files
bdwgc-rust/examples/free_by_borrow/src/main.rs
T
2019-04-30 15:21:42 +00:00

17 lines
289 B
Rust

extern crate bdwgc_alloc;
use bdwgc_alloc::Allocator;
#[global_allocator]
static GLOBAL_ALLOCATOR: Allocator = Allocator;
fn main() {
unsafe { Allocator::initialize() }
let mut _n: Box<[u8; 2 ^ 8]> = Box::new([0; 2 ^ 8]);
loop {
_n = Box::new([0; 2 ^ 8]);
}
}