summaryrefslogtreecommitdiffstats
path: root/src/test/ui/modules/special_module_name.rs
blob: 15c59b2da828ca33dd668274da54d1b1fd04ad07 (plain)
1
2
3
4
5
6
7
8
mod lib;
//~^ WARN found module declaration for lib.rs
//~| ERROR file not found for module `lib`
mod main;
//~^ WARN found module declaration for main.rs
//~| ERROR file not found for module `main`

fn main() {}