2011-12-20 21:56:21 -08:00
|
|
|
// error-pattern: copying a noncopyable value
|
|
|
|
|
2012-07-16 20:17:57 -07:00
|
|
|
class foo { let x: int; new(x: int) { self.x = x; } drop { } }
|
|
|
|
|
|
|
|
fn to_lambda2(b: foo) -> fn@(uint) -> uint {
|
2011-12-20 21:56:21 -08:00
|
|
|
// test case where copy clause specifies a value that is not used
|
2012-01-09 16:12:37 -08:00
|
|
|
// in fn@ body, but value is illegal to copy:
|
2012-08-01 17:30:05 -07:00
|
|
|
return fn@(u: uint, copy b) -> uint { 22u };
|
2011-12-20 21:56:21 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|