Skip to content

Commit 3645b06

Browse files
committed
#[must_use] for functions (RFC 1940)
The return value of a function annotated with `must_use`, must be used. This is in the matter of rust-lang#43302.
1 parent 0188ec6 commit 3645b06

File tree

3 files changed

+72
-9
lines changed

3 files changed

+72
-9
lines changed

src/librustc_lint/unused.rs

+25-9
Original file line numberDiff line numberDiff line change
@@ -145,22 +145,38 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnusedResults {
145145
}
146146

147147
let t = cx.tables.expr_ty(&expr);
148-
let warned = match t.sty {
149-
ty::TyTuple(ref tys, _) if tys.is_empty() => return,
150-
ty::TyNever => return,
151-
ty::TyBool => return,
152-
ty::TyAdt(def, _) => check_must_use(cx, def.did, s.span),
148+
let ty_warned = match t.sty {
149+
ty::TyAdt(def, _) => check_must_use(cx, def.did, s.span, ""),
153150
_ => false,
154151
};
155-
if !warned {
152+
153+
let mut fn_warned = false;
154+
let maybe_def = match expr.node {
155+
hir::ExprCall(ref callee, _) => {
156+
match callee.node {
157+
hir::ExprPath(ref qpath) => Some(cx.tables.qpath_def(qpath, callee.id)),
158+
_ => None
159+
}
160+
},
161+
hir::ExprMethodCall(..) => {
162+
cx.tables.type_dependent_defs.get(&expr.id).cloned()
163+
},
164+
_ => { None }
165+
};
166+
if let Some(def) = maybe_def {
167+
let def_id = def.def_id();
168+
fn_warned = check_must_use(cx, def_id, s.span, "return value of ");
169+
}
170+
171+
if !(ty_warned || fn_warned) {
156172
cx.span_lint(UNUSED_RESULTS, s.span, "unused result");
157173
}
158174

159-
fn check_must_use(cx: &LateContext, def_id: DefId, sp: Span) -> bool {
175+
fn check_must_use(cx: &LateContext, def_id: DefId, sp: Span, describe_path: &str) -> bool {
160176
for attr in cx.tcx.get_attrs(def_id).iter() {
161177
if attr.check_name("must_use") {
162-
let mut msg = format!("unused `{}` which must be used",
163-
cx.tcx.item_path_str(def_id));
178+
let mut msg = format!("unused {}`{}` which must be used",
179+
describe_path, cx.tcx.item_path_str(def_id));
164180
// check for #[must_use="..."]
165181
if let Some(s) = attr.value_str() {
166182
msg.push_str(": ");

src/test/ui/lint/fn_must_use.rs

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
12+
struct MyStruct {
13+
n: usize
14+
}
15+
16+
impl MyStruct {
17+
#[must_use]
18+
fn need_to_use_this_method_value(&self) -> usize {
19+
self.n
20+
}
21+
}
22+
23+
#[must_use="it's important"]
24+
fn need_to_use_this_value() -> bool {
25+
false
26+
}
27+
28+
fn main() {
29+
need_to_use_this_value();
30+
31+
let m = MyStruct { n: 2 };
32+
m.need_to_use_this_method_value();
33+
}

src/test/ui/lint/fn_must_use.stderr

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
warning: unused return value of `need_to_use_this_value` which must be used: it's important
2+
--> $DIR/fn_must_use.rs:29:5
3+
|
4+
29 | need_to_use_this_value();
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^
6+
|
7+
= note: #[warn(unused_must_use)] on by default
8+
9+
warning: unused return value of `MyStruct::need_to_use_this_method_value` which must be used
10+
--> $DIR/fn_must_use.rs:32:5
11+
|
12+
32 | m.need_to_use_this_method_value();
13+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+

0 commit comments

Comments
 (0)