rust/src/test/run-pass/str-append.rs

26 lines
424 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
use std;
import std::str;
fn test1() {
2011-07-27 07:19:39 -05:00
let s: str = "hello";
s += "world";
log s;
assert (s.(9) == 'd' as u8);
2010-06-23 23:03:09 -05:00
}
fn test2() {
// This tests for issue #163
2011-07-27 07:19:39 -05:00
let ff: str = "abc";
let a: str = ff + "ABC" + ff;
let b: str = "ABC" + ff + "ABC";
log a;
log b;
assert (str::eq(a, "abcABCabc"));
assert (str::eq(b, "ABCabcABC"));
}
fn main() { test1(); test2(); }