]> git.proxmox.com Git - rustc.git/blame - src/test/ui/modules/special_module_name.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / modules / special_module_name.stderr
CommitLineData
f2b60f7d
FG
1error[E0583]: file not found for module `lib`
2 --> $DIR/special_module_name.rs:1:1
3 |
4LL | mod lib;
5 | ^^^^^^^^
6 |
7 = help: to create the module `lib`, create file "$DIR/lib.rs" or "$DIR/lib/mod.rs"
8
9error[E0583]: file not found for module `main`
10 --> $DIR/special_module_name.rs:4:1
11 |
12LL | mod main;
13 | ^^^^^^^^^
14 |
15 = help: to create the module `main`, create file "$DIR/main.rs" or "$DIR/main/mod.rs"
16
17warning: found module declaration for lib.rs
18 --> $DIR/special_module_name.rs:1:1
19 |
20LL | mod lib;
21 | ^^^^^^^^
22 |
f2b60f7d
FG
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
2b03887a 25 = note: `#[warn(special_module_name)]` on by default
f2b60f7d
FG
26
27warning: found module declaration for main.rs
28 --> $DIR/special_module_name.rs:4:1
29 |
30LL | mod main;
31 | ^^^^^^^^^
32 |
33 = note: a binary crate cannot be used as library
34
35error: aborting due to 2 previous errors; 2 warnings emitted
36
37For more information about this error, try `rustc --explain E0583`.