summary refs log tree commit diff
path: root/src/test/run-pass/user.rs
blob: 7dd73a14342342293a686110cb31e028f9546332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// xfail-test
// -*- rust -*-

use std (name = "std",
         url = "http://rust-lang.org/src/std",
         uuid = _, ver = _);

fn main() {
  auto s = str.alloc(10 as uint);
  s += "hello ";
  log(debug, s);
  s += "there";
  log(debug, s);
  auto z = vec.alloc::<int>(10 as uint);
}