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-06-01 19:06:27 -05:00
|
|
|
let i: int;
|
|
|
|
new(i:int) { self.i = i; }
|
|
|
|
drop {}
|
|
|
|
}
|
2011-06-28 10:47:56 -05:00
|
|
|
|
2011-12-22 19:53:53 -06:00
|
|
|
fn main() { let x <- foo(10); let y = x; log(error, x); }
|