mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-26 11:59:49 +00:00
5 lines
166 B
Rust
5 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());
|
|
}
|