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

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