mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 12:43:32 +00:00
14 lines
218 B
Rust
14 lines
218 B
Rust
#[rustversion::not(nightly)]
|
|
#[ignore]
|
|
#[test]
|
|
fn test_backtrace() {}
|
|
|
|
#[rustversion::nightly]
|
|
#[test]
|
|
fn test_backtrace() {
|
|
use anyhow::anyhow;
|
|
|
|
let error = anyhow!("oh no!");
|
|
let _ = error.backtrace();
|
|
}
|