wallee 0.2.0

Flexible concrete Error type built on std::error::Error with caller location tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(clippy::let_underscore_untyped)]

#[rustversion::not(nightly)]
#[ignore]
#[test]
fn test_backtrace() {}

#[rustversion::nightly]
#[test]
fn test_backtrace() {
    use wallee::wallee;

    let error = wallee!("oh no!");
    let _ = error.backtrace();
}