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