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