1
0
mirror of https://github.com/bspeice/qadapt synced 2026-06-30 00:43:05 -04:00
Files
qadapt/examples/release_mode.rs
T
2018-12-06 22:14:43 -05:00

19 lines
463 B
Rust

use qadapt::allocate_panic;
use qadapt::QADAPT;
#[global_allocator]
static Q: QADAPT = QADAPT;
#[allocate_panic]
fn does_allocate() -> Box<u8> {
Box::new(0)
}
fn main() {
// If you were to run `cargo run --example release_mode`, this program blows up.
// If, however, you ran `cargo run --release --example release_mode`,
// nothing interesting will happen since panic-related code is stripped
// for release builds.
does_allocate();
}