rust/src/test/compile-fail/block-arg-used-as-lambda-with-illegal-cap.rs

13 lines
239 B
Rust
Raw Normal View History

2011-12-21 10:41:41 -06:00
// error-pattern: copying a noncopyable value
fn to_lambda1(f: lambda(uint) -> uint) -> lambda(uint) -> uint {
ret f;
}
fn to_lambda2(b: block(uint) -> uint) -> lambda(uint) -> uint {
ret to_lambda1({|x| b(x)});
}
fn main() {
}