mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 02:07:48 +00:00
10 lines
237 B
Rust
10 lines
237 B
Rust
// https://github.com/rust-lang/rust/issues/5550
|
|
//@ run-pass
|
|
#![allow(unused_assignments)]
|
|
|
|
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
|
|
}
|