rust/src/test/run-pass/issue-2101.rs

31 lines
820 B
Rust
Raw Normal View History

// 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
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)
}
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
}
};
}