summaryrefslogtreecommitdiffstats
path: root/tests/ui/generator/issue-110929-generator-conflict-error-ice.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generator/issue-110929-generator-conflict-error-ice.stderr')
-rw-r--r--tests/ui/generator/issue-110929-generator-conflict-error-ice.stderr18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/ui/generator/issue-110929-generator-conflict-error-ice.stderr b/tests/ui/generator/issue-110929-generator-conflict-error-ice.stderr
deleted file mode 100644
index 4d72ebe79..000000000
--- a/tests/ui/generator/issue-110929-generator-conflict-error-ice.stderr
+++ /dev/null
@@ -1,18 +0,0 @@
-error[E0499]: cannot borrow `*x` as mutable more than once at a time
- --> $DIR/issue-110929-generator-conflict-error-ice.rs:9:9
- |
-LL | let _c = || yield *&mut *x;
- | -- -- first borrow occurs due to use of `*x` in generator
- | |
- | first mutable borrow occurs here
-LL | || _ = &mut *x;
- | ^^ -- second borrow occurs due to use of `*x` in closure
- | |
- | second mutable borrow occurs here
-LL |
-LL | };
- | - first borrow might be used here, when `_c` is dropped and runs the destructor for generator
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0499`.