mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 12:51:31 +00:00
16 lines
282 B
Rust
16 lines
282 B
Rust
#![allow(clippy::let_underscore_untyped)]
|
|
|
|
#[rustversion::not(nightly)]
|
|
#[ignore = "requires nightly"]
|
|
#[test]
|
|
fn test_backtrace() {}
|
|
|
|
#[rustversion::nightly]
|
|
#[test]
|
|
fn test_backtrace() {
|
|
use anyhow::anyhow;
|
|
|
|
let error = anyhow!("oh no!");
|
|
let _ = error.backtrace();
|
|
}
|