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

27 lines
476 B
Rust
Raw Normal View History

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