blob: 9a81a6deeb12b81dc707fd2cc2216a288a4f0f56 [file] [log] [blame]
//@ normalize-stderr: "`: .*" -> "`: $$FILE_NOT_FOUND_MSG"
fn main() {
let _ = include_str!("include-macros/file.txt"); //~ ERROR couldn't read
//~^HELP different directory
let _ = include_bytes!("../../data.bin"); //~ ERROR couldn't read
//~^HELP different directory
let _ = include_str!("tests/ui/include-macros/file.txt"); //~ ERROR couldn't read
//~^HELP different directory
}