context-attribute 1.0.0

Set the error context using doc comments.
Documentation
1
2
3
4
5
6
7
8
9
extern crate context_attribute;
extern crate failure;

use failure::Error;

#[test]
fn should_work() -> Result<(), Error> {
    Ok(())
}