2022-07-08 16:08:32 +00:00
|
|
|
//@compile-flags: -Zmiri-disable-isolation
|
2022-08-06 15:29:43 -04:00
|
|
|
//@rustc-env: RUST_BACKTRACE=1
|
2022-06-01 17:32:01 -07:00
|
|
|
|
|
|
|
use std::alloc::System;
|
|
|
|
use std::backtrace::Backtrace;
|
|
|
|
|
|
|
|
#[global_allocator]
|
|
|
|
static GLOBAL_ALLOCATOR: System = System;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
eprint!("{}", Backtrace::capture());
|
|
|
|
}
|