]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/mod_file_with_path_attr.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / parser / mod_file_with_path_attr.rs
CommitLineData
0bf4aa26 1// normalize-stderr-test: "not_a_real_file.rs:.*\(" -> "not_a_real_file.rs: $$FILE_NOT_FOUND_MSG ("
d9579d0f 2
223e47cc
LB
3#[path = "not_a_real_file.rs"]
4mod m; //~ ERROR not_a_real_file.rs
5
6fn main() {
970d7e83 7 assert_eq!(m::foo(), 10);
223e47cc 8}