]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-101749.stderr
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / resolve / issue-101749.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `rect`
2   --> $DIR/issue-101749.rs:17:13
3    |
4 LL |     let _ = rect::area();
5    |             ^^^^ use of undeclared crate or module `rect`
6    |
7 help: you may have meant to call an instance method
8    |
9 LL |     let _ = rect.area();
10    |                 ~
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0433`.