about summary refs log tree commit diff
path: root/src/test/compile-fail/mod_file_with_path_attr.rs
blob: 3baa18be9f1f69e092a348012e73c2ddf6955084 (plain)
1
2
3
4
5
6
#[path = "not_a_real_file.rs"]
mod m; //~ ERROR not_a_real_file.rs

fn main() {
    assert m::foo() == 10;
}