Include filename in error message when #include fails

This commit is contained in:
jn 2023-01-20 15:30:16 +01:00
parent cc4242b1fe
commit cc4b819d6b

View File

@ -481,7 +481,7 @@ fn include_text_file(line_number: usize, text: &str, input_file: String) -> Stri
}
}
let mut included_file = read_to_string(source_path).expect("failed to include file");
let mut included_file = read_to_string(source_path).expect(&format!("failed to include file \"{}\"", path_string));
included_file.push('\n');
let mut end_of_original_file = String::new();