2011-11-18 05:39:20 -06:00
|
|
|
// error-pattern: copying a noncopyable value
|
2011-09-12 03:12:36 -05:00
|
|
|
|
2012-08-15 20:46:55 -05:00
|
|
|
struct foo {
|
2012-09-06 21:40:15 -05:00
|
|
|
i: int,
|
2012-11-14 00:22:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl foo : Drop {
|
|
|
|
fn finalize() {}
|
2012-06-01 19:06:27 -05:00
|
|
|
}
|
2011-06-28 10:47:56 -05:00
|
|
|
|
2012-09-05 17:58:43 -05:00
|
|
|
fn foo(i:int) -> foo {
|
|
|
|
foo {
|
|
|
|
i: i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 13:11:23 -05:00
|
|
|
fn main() { let x = move foo(10); let y = x; log(error, x); }
|