blob: a7348b26fa207d4c7a3b3070a845582d61c90e67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// error-pattern: copying a noncopyable value
fn to_lambda1(f: fn@(uint) -> uint) -> fn@(uint) -> uint {
ret f;
}
fn to_lambda2(b: block(uint) -> uint) -> fn@(uint) -> uint {
ret to_lambda1({|x| b(x)});
}
fn main() {
}
|