rust/src/test/compile-fail/lint-managed-heap-memory.rs

12 lines
201 B
Rust
Raw Normal View History

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