2014-06-06 08:51:42 -05:00
|
|
|
#![allow(dead_code)]
|
2014-10-27 17:37:07 -05:00
|
|
|
#![forbid(box_pointers)]
|
2021-08-24 19:39:40 -05:00
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2013-01-28 20:36:27 -06:00
|
|
|
struct Foo {
|
2015-01-08 04:54:35 -06:00
|
|
|
x: Box<isize> //~ ERROR type uses owned
|
2013-01-28 20:36:27 -06:00
|
|
|
}
|
2012-08-28 20:25:41 -05:00
|
|
|
|
|
|
|
fn main() {
|
2021-08-24 19:39:40 -05:00
|
|
|
let _x: Foo = Foo { x : Box::new(10) };
|
2012-08-28 20:25:41 -05:00
|
|
|
//~^ ERROR type uses owned
|
|
|
|
}
|