mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-28 05:21:34 +00:00

* remove member access fns and * fix nightly errors * bring back the test i accidentally removed
8 lines
131 B
Rust
8 lines
131 B
Rust
#[test]
|
|
fn test_context() {
|
|
use eyre::{eyre, Report};
|
|
|
|
let error: Report = eyre!("oh no!");
|
|
let _ = error.context();
|
|
}
|