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