Add a test case for helpful errors when copying into closures (#2942)
This commit is contained in:
parent
673d0d83cf
commit
34886ed488
39
src/test/compile-fail/copy-into-closure.rs
Normal file
39
src/test/compile-fail/copy-into-closure.rs
Normal file
@ -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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user