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