// ANCHOR: here
use std::fmt::Result;
use std::io::Result as IoResult;
fn function1() -> Result {
// --snip--
// ANCHOR_END: here
Ok(())
}
fn function2() -> IoResult<()> {