Closed
Description
error: unused variable: `e`
--> src/librustc_resolve/error_reporting.rs:234:41
|
234 | if let PathSource::Expr(ref e) = source {
| ^ help: consider prefixing with an underscore: `_e`
|
= note: `-D unused-variables` implied by `-D warnings`
The correct suggestion is either to remove the ref e
and supply _e
or to change the code to ref e: _
.