blob: 8a15ba63661bcc62f5752cefaedb3d3489336968 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use rustc_macros::Diagnostic;
use std::path::Path;
#[derive(Diagnostic)]
#[diag(save_analysis::could_not_open)]
pub(crate) struct CouldNotOpen<'a> {
pub file_name: &'a Path,
pub err: std::io::Error,
}
|