Option
This reverts commit 6bb6c001be.
6bb6c001be
This distinguishes `Option` and `Result`-returning doctests with implicit `main` method, where the former tests must end with `Some(())`.
fn main()
Result
This lets the default `fn main()` unwrap any `Result`s, which allows the use of `?` in most tests without adding it manually.