replace reference to ~"string" with box "string"
This commit is contained in:
parent
0ae4b97c09
commit
8bcfabaeac
@ -2651,7 +2651,7 @@ fn check_struct_enum_variant(fcx: &FnCtxt,
|
||||
let error = if vst == ast::ExprVstoreSlice {
|
||||
"`&\"string\"` has been removed; use `\"string\"` instead"
|
||||
} else {
|
||||
"`~\"string\"` has been removed; use `\"string\".to_string()` instead"
|
||||
"`box \"string\"` has been removed; use `\"string\".to_string()` instead"
|
||||
};
|
||||
tcx.sess.span_err(expr.span, error);
|
||||
ty::mk_err()
|
||||
|
Loading…
Reference in New Issue
Block a user