mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
9 lines
219 B
Rust
9 lines
219 B
Rust
// run-pass
|
|
#![allow(unused_assignments)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
pub fn main() {
|
|
let s: String = "foobar".to_string();
|
|
let mut t: &str = &s;
|
|
t = &t[0..3]; // for master: str::view(t, 0, 3) maybe
|
|
}
|