diff --git a/lang/src/fs.rs b/lang/src/fs.rs index 2ca576249..453bc6d52 100644 --- a/lang/src/fs.rs +++ b/lang/src/fs.rs @@ -242,8 +242,8 @@ pub type PathResolver<'a> = #[derive(Debug)] pub struct CantLoadFile { - path: PathBuf, - source: io::Error, + pub path: PathBuf, + pub source: io::Error, } impl core::fmt::Display for CantLoadFile {