summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/mod-resolver/issue-5198/lib/explanation.txt
blob: 90464def8ebcc29a5a4be21bc44f4bc3e43245b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
This file is contained in the './lib' directory.

The directory name './lib' conflicts with the './lib.rs' file name.

'lib.rs' defines 3 external modules:

    * mod a;
    * mod b;
    * mod c;

Module resolution will fail if we look for './lib/a.rs' or './lib/a/mod.rs',
so we should fall back to looking for './a.rs', which correctly finds the module that
rustfmt should format.

'./lib/b.rs' and './lib/c/mod.rs' exist at the default submodule paths so we should be able
to resolve these modules with no problems.