rust/src/test/run-pass/estr-uniq.rs
2012-04-16 16:17:51 -07:00

9 lines
179 B
Rust

fn main() {
let x : str/~ = "hello"/~;
let _y : str/~ = "there"/~;
let mut z = "thing"/~;
z = x;
assert z[0] == ('h' as u8);
assert z[4] == ('o' as u8);
}