mirror of
https://github.com/bspeice/qadapt
synced 2024-11-13 01:28:08 -05:00
19 lines
451 B
Rust
19 lines
451 B
Rust
use qadapt::no_alloc;
|
|
use qadapt::QADAPT;
|
|
|
|
#[global_allocator]
|
|
static Q: QADAPT = QADAPT;
|
|
|
|
#[no_alloc]
|
|
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();
|
|
}
|