Skip to content

Commit c83f8f9

Browse files
committed
Auto merge of #26770 - arielb1:str-mut-idx, r=eddyb
r? @eddyb This doesn't seem to make any code valid because the `IndexMut` impls are missing.
2 parents 638ffec + 90fcf26 commit c83f8f9

File tree

4 files changed

+40
-28
lines changed

4 files changed

+40
-28
lines changed

src/librustc/diagnostics.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1205,8 +1205,8 @@ register_diagnostics! {
12051205
E0017,
12061206
E0022,
12071207
E0038,
1208-
E0134,
1209-
E0135,
1208+
// E0134,
1209+
// E0135,
12101210
E0136,
12111211
E0138,
12121212
E0139,

src/librustc/middle/effect.rs

-26
Original file line numberDiff line numberDiff line change
@@ -59,26 +59,6 @@ impl<'a, 'tcx> EffectCheckVisitor<'a, 'tcx> {
5959
UnsafeFn => {}
6060
}
6161
}
62-
63-
fn check_str_index(&mut self, e: &ast::Expr) {
64-
let base_type = match e.node {
65-
ast::ExprIndex(ref base, _) => self.tcx.node_id_to_type(base.id),
66-
_ => return
67-
};
68-
debug!("effect: checking index with base type {:?}",
69-
base_type);
70-
match base_type.sty {
71-
ty::TyBox(ty) | ty::TyRef(_, ty::mt{ty, ..}) => if ty::TyStr == ty.sty {
72-
span_err!(self.tcx.sess, e.span, E0134,
73-
"modification of string types is not allowed");
74-
},
75-
ty::TyStr => {
76-
span_err!(self.tcx.sess, e.span, E0135,
77-
"modification of string types is not allowed");
78-
}
79-
_ => {}
80-
}
81-
}
8262
}
8363

8464
impl<'a, 'tcx, 'v> Visitor<'v> for EffectCheckVisitor<'a, 'tcx> {
@@ -164,12 +144,6 @@ impl<'a, 'tcx, 'v> Visitor<'v> for EffectCheckVisitor<'a, 'tcx> {
164144
self.require_unsafe(expr.span, "dereference of raw pointer")
165145
}
166146
}
167-
ast::ExprAssign(ref base, _) | ast::ExprAssignOp(_, ref base, _) => {
168-
self.check_str_index(&**base);
169-
}
170-
ast::ExprAddrOf(ast::MutMutable, ref base) => {
171-
self.check_str_index(&**base);
172-
}
173147
ast::ExprInlineAsm(..) => {
174148
self.require_unsafe(expr.span, "use of inline assembly");
175149
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2015 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+
fn mutate(mut s: &mut str) {
12+
let _s: &mut str = &mut s[1..2];
13+
//~^ ERROR cannot borrow immutable indexed content as mutable
14+
}
15+
16+
pub fn main() {}

src/test/compile-fail/str-mut-idx.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright 2015 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+
fn bot<T>() -> T { loop {} }
12+
13+
fn mutate(s: &mut str) {
14+
s[1..2] = bot();
15+
//~^ ERROR `core::marker::Sized` is not implemented for the type `str`
16+
//~^^ ERROR `core::marker::Sized` is not implemented for the type `str`
17+
s[1usize] = bot();
18+
//~^ ERROR `core::ops::Index<usize>` is not implemented for the type `str`
19+
//~^^ ERROR `core::ops::Index<usize>` is not implemented for the type `str`
20+
}
21+
22+
pub fn main() {}

0 commit comments

Comments
 (0)