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