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

12 lines
193 B
Rust
Raw Normal View History

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