io::close can error Signed-off-by: Sebastian <sebastian@sebsite.pw>
1 files changed, 1 insertions(+), 1 deletions(-) M haredoc.ha
M haredoc.ha => haredoc.ha +1 -1
@@ 109,7 109,7 @@ fn scan(path: str) (ast::subunit | error) = { case let err: fs::error => fmt::fatal("Error reading {}: {}", path, fs::strerror(err)); }; - defer io::close(input); + defer io::close(input)!; const lexer = lex::init(input, path, lex::flags::COMMENTS); return parse::subunit(&lexer)?; };