Skip to content

Commit

Permalink
Add a test case for helpful errors when copying into closures (rust-l…
Browse files Browse the repository at this point in the history
  • Loading branch information
bblum authored and catamorphism committed Aug 28, 2012
1 parent eec96e8 commit c99b2cb
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/test/compile-fail/copy-into-closure.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
fn closure1(+x: ~str) -> (~str, fn@() -> ~str) {
let f = fn@() -> ~str {
copy x
//~^ WARNING implicitly copying a non-implicitly-copyable value
//~^^ NOTE to copy values into a @fn closure, use a capture clause
};
(x,f)
}

fn closure2(+x: util::NonCopyable) -> (util::NonCopyable,
fn@() -> util::NonCopyable) {
let f = fn@() -> util::NonCopyable {
copy x
//~^ ERROR copying a noncopyable value
//~^^ NOTE non-copyable value cannot be copied into a @fn closure
//~^^^ ERROR copying a noncopyable value
};
(x,f)
}
fn closure3(+x: util::NonCopyable) {
do task::spawn {
let s = copy x;
//~^ ERROR copying a noncopyable value
//~^^ NOTE non-copyable value cannot be copied into a ~fn closure
//~^^^ ERROR copying a noncopyable value
error!("%?", s);
}
error!("%?", x);
}
fn main() {
let x = ~"hello";
do task::spawn {
let s = copy x;
//~^ WARNING implicitly copying a non-implicitly-copyable value
//~^^ NOTE to copy values into a ~fn closure, use a capture clause
error!("%s from child", s);
}
error!("%s", x);
}

0 comments on commit c99b2cb

Please sign in to comment.