2012-08-28 20:25:41 -05:00
|
|
|
#[forbid(heap_memory)];
|
|
|
|
|
2012-09-17 20:52:50 -05:00
|
|
|
type Foo = { //~ ERROR type uses managed
|
2012-08-28 20:25:41 -05:00
|
|
|
x: @int
|
|
|
|
};
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _x : { x : ~int } = {x : ~10};
|
|
|
|
//~^ ERROR type uses owned
|
|
|
|
//~^^ ERROR type uses owned
|
|
|
|
}
|