blob: 6660e5bb57c09d3db698df200e814e449a31900b [file] [log] [blame] [edit]
//@compile-flags: -Zmiri-disable-isolation
//@rustc-env: RUST_BACKTRACE=1
use std::alloc::System;
use std::backtrace::Backtrace;
#[global_allocator]
static GLOBAL_ALLOCATOR: System = System;
fn main() {
eprint!("{}", Backtrace::capture());
}