blob: ce385f5011d3c1346a975948e6cc8d633f8f54d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#[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();
}
|