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

27 lines
443 B
Rust
Raw Normal View History

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