2010-06-23 23:03:09 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
// -*- rust -*-
|
2010-09-20 19:42:14 -05:00
|
|
|
use std;
|
|
|
|
|
|
|
|
fn test1() {
|
2012-07-14 00:57:48 -05:00
|
|
|
let mut s: ~str = ~"hello";
|
|
|
|
s += ~"world";
|
2011-12-22 19:53:53 -06:00
|
|
|
log(debug, s);
|
2011-08-19 17:16:48 -05:00
|
|
|
assert (s[9] == 'd' as u8);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2010-09-20 19:42:14 -05:00
|
|
|
|
|
|
|
fn test2() {
|
2011-06-15 13:19:50 -05:00
|
|
|
// This tests for issue #163
|
2010-09-20 19:42:14 -05:00
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
let ff: ~str = ~"abc";
|
|
|
|
let a: ~str = ff + ~"ABC" + ff;
|
|
|
|
let b: ~str = ~"ABC" + ff + ~"ABC";
|
2011-12-22 19:53:53 -06:00
|
|
|
log(debug, a);
|
|
|
|
log(debug, b);
|
2012-08-02 17:42:56 -05:00
|
|
|
assert (a == ~"abcABCabc");
|
|
|
|
assert (b == ~"ABCabcABC");
|
2010-09-20 19:42:14 -05:00
|
|
|
}
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { test1(); test2(); }
|