---
source: crates/crisp-errors/tests/fallible_errors.rs
expression: out
---
main() -> ()
parse_config(text: T) -> Config ! ParseError
read_config(path: T) -> Config ! IoError | ParseError
read_file(path: T) -> str ! IoError
#[derive(Debug)]
enum CrispError {
IoError(IoError),
ParseError(ParseError),
}