summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-for-result-box-error_ok.rs
blob: b0e932e1fe03ca8665626a255aea106d906f4d82 (plain)
1
2
3
4
5
6
// run-pass
use std::io::Error;

fn main() -> Result<(), Box<Error>> {
    Ok(())
}