rust/src/test/run-pass/user.rs

16 lines
309 B
Rust
Raw Normal View History

// 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() {
auto s = str.alloc(10 as uint);
2011-07-27 07:48:34 -05:00
s += "hello ";
log_full(core::debug, s);
2011-07-27 07:48:34 -05:00
s += "there";
log_full(core::debug, s);
auto z = vec.alloc::<int>(10 as uint);
2011-07-27 07:48:34 -05:00
}