blob: bfac3a07ac3b1ef65b7b4ff7d11c018e6faa711d [file] [log] [blame]
// ANCHOR: here
use std::fmt;
use std::io;
fn function1() -> fmt::Result {
// --snip--
// ANCHOR_END: here
Ok(())
// ANCHOR: here
}
fn function2() -> io::Result<()> {
// --snip--
// ANCHOR_END: here
Ok(())
// ANCHOR: here
}
// ANCHOR_END: here