2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-06-21 16:37:55 -05:00
|
|
|
// xfail-test
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-09-05 14:32:05 -05:00
|
|
|
use std::arena;
|
|
|
|
use std::arena::Arena;
|
2012-06-21 16:37:55 -05:00
|
|
|
|
|
|
|
enum hold { s(str) }
|
|
|
|
|
2012-08-11 09:08:42 -05:00
|
|
|
fn init(ar: &a.arena::Arena, str: str) -> &a.hold {
|
2012-06-21 16:37:55 -05:00
|
|
|
new(*ar) s(str)
|
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn main(args: ~[str]) {
|
2012-08-11 09:08:42 -05:00
|
|
|
let ar = arena::Arena();
|
2012-06-21 16:37:55 -05:00
|
|
|
let leak = init(&ar, args[0]);
|
2012-08-06 14:34:08 -05:00
|
|
|
match *leak {
|
2012-06-21 16:37:55 -05:00
|
|
|
s(astr) {
|
2012-08-22 19:24:52 -05:00
|
|
|
io::println(fmt!("%?", astr));
|
2012-06-21 16:37:55 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|