Skip to content

Commit 6abe648

Browse files
committed
Auto merge of #39116 - mgattozzi:better-string-message, r=nrc
Add clearer error message using `&str + &str` This is the first part of #39018. One of the common things for new users coming from more dynamic languages like JavaScript, Python or Ruby is to use `+` to concatenate strings. However, this doesn't work that way in Rust unless the first type is a `String`. This commit adds a check for this use case and outputs a new error as well as a suggestion to guide the user towards the desired behavior. It also adds a new test case to test the output of the error.
2 parents 1b6b20a + b54f593 commit 6abe648

File tree

4 files changed

+133
-3
lines changed

4 files changed

+133
-3
lines changed

src/librustc_typeck/check/op.rs

+54-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
use super::FnCtxt;
1414
use hir::def_id::DefId;
1515
use rustc::ty::{Ty, TypeFoldable, PreferMutLvalue, TypeVariants};
16+
use rustc::ty::TypeVariants::{TyStr, TyRef};
1617
use rustc::infer::type_variable::TypeVariableOrigin;
18+
use errors;
1719
use syntax::ast;
1820
use syntax::symbol::Symbol;
1921
use rustc::hir;
@@ -237,9 +239,17 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
237239
};
238240

239241
if let Some(missing_trait) = missing_trait {
240-
span_note!(&mut err, lhs_expr.span,
241-
"an implementation of `{}` might be missing for `{}`",
242-
missing_trait, lhs_ty);
242+
if missing_trait == "std::ops::Add" &&
243+
self.check_str_addition(expr, lhs_expr, lhs_ty,
244+
rhs_expr, rhs_ty_var, &mut err) {
245+
// This has nothing here because it means we did string
246+
// concatenation (e.g. "Hello " + "World!"). This means
247+
// we don't want the span in the else clause to be emmitted
248+
} else {
249+
span_note!(&mut err, lhs_expr.span,
250+
"an implementation of `{}` might be missing for `{}`",
251+
missing_trait, lhs_ty);
252+
}
243253
}
244254
err.emit();
245255
}
@@ -254,6 +264,47 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
254264
(rhs_ty_var, return_ty)
255265
}
256266

267+
fn check_str_addition(&self,
268+
expr: &'gcx hir::Expr,
269+
lhs_expr: &'gcx hir::Expr,
270+
lhs_ty: Ty<'tcx>,
271+
rhs_expr: &'gcx hir::Expr,
272+
rhs_ty_var: Ty<'tcx>,
273+
mut err: &mut errors::DiagnosticBuilder) -> bool {
274+
// If this function returns false it means we use it to make sure we print
275+
// out the an "implementation of span_note!" above where this function is
276+
// called and if true we don't.
277+
let mut is_string_addition = false;
278+
let rhs_ty = self.check_expr_coercable_to_type(rhs_expr, rhs_ty_var);
279+
if let TyRef(_, l_ty) = lhs_ty.sty {
280+
if let TyRef(_, r_ty) = rhs_ty.sty {
281+
if l_ty.ty.sty == TyStr && r_ty.ty.sty == TyStr {
282+
span_note!(&mut err, lhs_expr.span,
283+
"`+` can't be used to concatenate two `&str` strings");
284+
let codemap = self.tcx.sess.codemap();
285+
let suggestion =
286+
match (codemap.span_to_snippet(lhs_expr.span),
287+
codemap.span_to_snippet(rhs_expr.span)) {
288+
(Ok(lstring), Ok(rstring)) =>
289+
format!("{}.to_owned() + {}", lstring, rstring),
290+
_ => format!("<expression>")
291+
};
292+
err.span_suggestion(expr.span,
293+
&format!("to_owned() can be used to create an owned `String` \
294+
from a string reference. String concatenation \
295+
appends the string on the right to the string \
296+
on the left and may require reallocation. This \
297+
requires ownership of the string on the left."), suggestion);
298+
is_string_addition = true;
299+
}
300+
301+
}
302+
303+
}
304+
305+
is_string_addition
306+
}
307+
257308
pub fn check_user_unop(&self,
258309
op_str: &str,
259310
mname: &str,
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
error[E0369]: binary operation `+` cannot be applied to type `&'static str`
2+
--> src/test/ui/span/issue-39018.rs:2:13
3+
|
4+
2 | let x = "Hello " + "World!";
5+
| ^^^^^^^^
6+
|
7+
note: `+` can't be used to concatenate two `&str` strings
8+
--> src/test/ui/span/issue-39018.rs:2:13
9+
|
10+
2 | let x = "Hello " + "World!";
11+
| ^^^^^^^^
12+
help: to_owned() can be used to create an owned `String` from a string reference. This allows concatenation since the `String` is owned.
13+
| let x = "Hello ".to_owned() + "World!";
14+
15+
error[E0369]: binary operation `+` cannot be applied to type `World`
16+
--> src/test/ui/span/issue-39018.rs:7:13
17+
|
18+
7 | let y = World::Hello + World::Goodbye;
19+
| ^^^^^^^^^^^^
20+
|
21+
note: an implementation of `std::ops::Add` might be missing for `World`
22+
--> src/test/ui/span/issue-39018.rs:7:13
23+
|
24+
7 | let y = World::Hello + World::Goodbye;
25+
| ^^^^^^^^^^^^
26+
27+
error: aborting due to 2 previous errors
28+

src/test/ui/span/issue-39018.rs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
pub fn main() {
12+
let x = "Hello " + "World!";
13+
14+
// Make sure that the span outputs a warning
15+
// for not having an implementation for std::ops::Add
16+
// that won't output for the above string concatenation
17+
let y = World::Hello + World::Goodbye;
18+
}
19+
20+
enum World {
21+
Hello,
22+
Goodbye,
23+
}

src/test/ui/span/issue-39018.stderr

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
error[E0369]: binary operation `+` cannot be applied to type `&'static str`
2+
--> $DIR/issue-39018.rs:12:13
3+
|
4+
12 | let x = "Hello " + "World!";
5+
| ^^^^^^^^
6+
|
7+
note: `+` can't be used to concatenate two `&str` strings
8+
--> $DIR/issue-39018.rs:12:13
9+
|
10+
12 | let x = "Hello " + "World!";
11+
| ^^^^^^^^
12+
help: to_owned() can be used to create an owned `String` from a string reference. String concatenation appends the string on the right to the string on the left and may require reallocation. This requires ownership of the string on the left.
13+
| let x = "Hello ".to_owned() + "World!";
14+
15+
error[E0369]: binary operation `+` cannot be applied to type `World`
16+
--> $DIR/issue-39018.rs:17:13
17+
|
18+
17 | let y = World::Hello + World::Goodbye;
19+
| ^^^^^^^^^^^^
20+
|
21+
note: an implementation of `std::ops::Add` might be missing for `World`
22+
--> $DIR/issue-39018.rs:17:13
23+
|
24+
17 | let y = World::Hello + World::Goodbye;
25+
| ^^^^^^^^^^^^
26+
27+
error: aborting due to 2 previous errors
28+

0 commit comments

Comments
 (0)