2018-10-20 19:21:16 -05:00
|
|
|
// normalize-stderr-test: "not_a_real_file.rs:.*\(" -> "not_a_real_file.rs: $$FILE_NOT_FOUND_MSG ("
|
2015-02-09 13:01:45 -06:00
|
|
|
|
2012-11-18 16:14:40 -06:00
|
|
|
#[path = "not_a_real_file.rs"]
|
|
|
|
mod m; //~ ERROR not_a_real_file.rs
|
|
|
|
|
|
|
|
fn main() {
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(m::foo(), 10);
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|