2011-08-22 15:53:39 -05:00
|
|
|
fn test_stack_assign() {
|
|
|
|
let s: istr = ~"a";
|
|
|
|
log s;
|
|
|
|
let t: istr = ~"a";
|
|
|
|
assert s == t;
|
|
|
|
let u: istr = ~"b";
|
|
|
|
assert s != u;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_heap_lit() {
|
|
|
|
~"a big string";
|
|
|
|
}
|
|
|
|
|
2011-08-22 16:33:31 -05:00
|
|
|
fn test_heap_assign() {
|
|
|
|
let s: istr;
|
|
|
|
s = ~"AAAA";
|
|
|
|
}
|
|
|
|
|
2011-08-22 18:12:42 -05:00
|
|
|
fn test_heap_log() {
|
|
|
|
let s = ~"a big ol' string";
|
|
|
|
log s;
|
|
|
|
}
|
|
|
|
|
2011-08-22 15:53:39 -05:00
|
|
|
fn main() {
|
|
|
|
test_stack_assign();
|
|
|
|
test_heap_lit();
|
2011-08-22 16:33:31 -05:00
|
|
|
test_heap_assign();
|
2011-08-22 18:12:42 -05:00
|
|
|
test_heap_log();
|
2011-08-22 15:53:39 -05:00
|
|
|
}
|