eyre/tests/test_context_access.rs
Jane Lusby d525c1fc0a
remove member access fns and backtrace fn (#14)
* remove member access fns and

* fix nightly errors

* bring back the test i accidentally removed
2020-05-04 12:20:46 -07:00

8 lines
131 B
Rust

#[test]
fn test_context() {
use eyre::{eyre, Report};
let error: Report = eyre!("oh no!");
let _ = error.context();
}