2011-08-31 06:22:58 -05:00
|
|
|
// xfail-test
|
2011-07-27 07:48:34 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
|
|
|
use std (name = "std",
|
|
|
|
url = "http://rust-lang.org/src/std",
|
|
|
|
uuid = _, ver = _);
|
|
|
|
|
|
|
|
fn main() {
|
2011-12-13 18:25:51 -06:00
|
|
|
auto s = str.alloc(10 as uint);
|
2011-07-27 07:48:34 -05:00
|
|
|
s += "hello ";
|
2011-12-22 16:42:52 -06:00
|
|
|
log_full(core::debug, s);
|
2011-07-27 07:48:34 -05:00
|
|
|
s += "there";
|
2011-12-22 16:42:52 -06:00
|
|
|
log_full(core::debug, s);
|
2011-12-13 18:25:51 -06:00
|
|
|
auto z = vec.alloc::<int>(10 as uint);
|
2011-07-27 07:48:34 -05:00
|
|
|
}
|