6 lines
166 B
Rust
6 lines
166 B
Rust
// https://github.com/rust-analyzer/rust-analyzer/issues/677
|
|
fn main() {
|
|
#[cfg(feature = "backtrace")]
|
|
let exit_code = panic::catch_unwind(move || main());
|
|
}
|