]> git.lizzy.rs Git - rust.git/blob - tests/ui/modules/special_module_name.stderr
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[rust.git] / tests / ui / modules / special_module_name.stderr
1 error[E0583]: file not found for module `lib`
2   --> $DIR/special_module_name.rs:1:1
3    |
4 LL | mod lib;
5    | ^^^^^^^^
6    |
7    = help: to create the module `lib`, create file "$DIR/lib.rs" or "$DIR/lib/mod.rs"
8
9 error[E0583]: file not found for module `main`
10   --> $DIR/special_module_name.rs:4:1
11    |
12 LL | mod main;
13    | ^^^^^^^^^
14    |
15    = help: to create the module `main`, create file "$DIR/main.rs" or "$DIR/main/mod.rs"
16
17 warning: found module declaration for lib.rs
18   --> $DIR/special_module_name.rs:1:1
19    |
20 LL | mod lib;
21    | ^^^^^^^^
22    |
23    = note: lib.rs is the root of this crate's library target
24    = help: to refer to it from other targets, use the library's name as the path
25    = note: `#[warn(special_module_name)]` on by default
26
27 warning: found module declaration for main.rs
28   --> $DIR/special_module_name.rs:4:1
29    |
30 LL | mod main;
31    | ^^^^^^^^^
32    |
33    = note: a binary crate cannot be used as library
34
35 error: aborting due to 2 previous errors; 2 warnings emitted
36
37 For more information about this error, try `rustc --explain E0583`.