summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-closures-slice-patterns.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-closures-slice-patterns.stderr')
-rw-r--r--src/test/ui/borrowck/borrowck-closures-slice-patterns.stderr114
1 files changed, 0 insertions, 114 deletions
diff --git a/src/test/ui/borrowck/borrowck-closures-slice-patterns.stderr b/src/test/ui/borrowck/borrowck-closures-slice-patterns.stderr
deleted file mode 100644
index 411d85b8e..000000000
--- a/src/test/ui/borrowck/borrowck-closures-slice-patterns.stderr
+++ /dev/null
@@ -1,114 +0,0 @@
-error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
- --> $DIR/borrowck-closures-slice-patterns.rs:7:13
- |
-LL | let f = || {
- | -- immutable borrow occurs here
-LL | let [ref y, ref z @ ..] = x;
- | - first borrow occurs due to use of `x` in closure
-LL | };
-LL | let r = &mut x;
- | ^^^^^^ mutable borrow occurs here
-LL |
-LL | f();
- | - immutable borrow later used here
-
-error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
- --> $DIR/borrowck-closures-slice-patterns.rs:16:13
- |
-LL | let mut f = || {
- | -- mutable borrow occurs here
-LL | let [ref mut y, ref mut z @ ..] = x;
- | - first borrow occurs due to use of `x` in closure
-LL | };
-LL | let r = &x;
- | ^^ immutable borrow occurs here
-LL |
-LL | f();
- | - mutable borrow later used here
-
-error[E0382]: borrow of moved value: `x`
- --> $DIR/borrowck-closures-slice-patterns.rs:25:5
- |
-LL | fn arr_by_move(x: [String; 3]) {
- | - move occurs because `x` has type `[String; 3]`, which does not implement the `Copy` trait
-LL | let f = || {
- | -- value moved into closure here
-LL | let [y, z @ ..] = x;
- | - variable moved due to use in closure
-LL | };
-LL | &x;
- | ^^ value borrowed here after move
-
-error[E0502]: cannot borrow `*x` as mutable because it is also borrowed as immutable
- --> $DIR/borrowck-closures-slice-patterns.rs:33:13
- |
-LL | let f = || {
- | -- immutable borrow occurs here
-LL | let [ref y, ref z @ ..] = *x;
- | -- first borrow occurs due to use of `x` in closure
-LL | };
-LL | let r = &mut *x;
- | ^^^^^^^ mutable borrow occurs here
-LL |
-LL | f();
- | - immutable borrow later used here
-
-error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
- --> $DIR/borrowck-closures-slice-patterns.rs:42:13
- |
-LL | let mut f = || {
- | -- closure construction occurs here
-LL | let [ref mut y, ref mut z @ ..] = *x;
- | -- first borrow occurs due to use of `x` in closure
-LL | };
-LL | let r = &x;
- | ^^ second borrow occurs here
-LL |
-LL | f();
- | - first borrow later used here
-
-error[E0382]: borrow of moved value: `x`
- --> $DIR/borrowck-closures-slice-patterns.rs:51:5
- |
-LL | fn arr_box_by_move(x: Box<[String; 3]>) {
- | - move occurs because `x` has type `Box<[String; 3]>`, which does not implement the `Copy` trait
-LL | let f = || {
- | -- value moved into closure here
-LL | let [y, z @ ..] = *x;
- | -- variable moved due to use in closure
-LL | };
-LL | &x;
- | ^^ value borrowed here after move
-
-error[E0502]: cannot borrow `*x` as mutable because it is also borrowed as immutable
- --> $DIR/borrowck-closures-slice-patterns.rs:59:13
- |
-LL | let f = || {
- | -- immutable borrow occurs here
-LL | if let [ref y, ref z @ ..] = *x {}
- | -- first borrow occurs due to use of `x` in closure
-LL | };
-LL | let r = &mut *x;
- | ^^^^^^^ mutable borrow occurs here
-LL |
-LL | f();
- | - immutable borrow later used here
-
-error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
- --> $DIR/borrowck-closures-slice-patterns.rs:68:13
- |
-LL | let mut f = || {
- | -- closure construction occurs here
-LL | if let [ref mut y, ref mut z @ ..] = *x {}
- | -- first borrow occurs due to use of `x` in closure
-LL | };
-LL | let r = &x;
- | ^^ second borrow occurs here
-LL |
-LL | f();
- | - first borrow later used here
-
-error: aborting due to 8 previous errors
-
-Some errors have detailed explanations: E0382, E0501, E0502.
-For more information about an error, try `rustc --explain E0382`.