about summary refs log tree commit diff
path: root/src/test/ui/nll/move-errors.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/move-errors.stderr')
-rw-r--r--src/test/ui/nll/move-errors.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/nll/move-errors.stderr b/src/test/ui/nll/move-errors.stderr
index 86bb8e3a4b3..f329748139e 100644
--- a/src/test/ui/nll/move-errors.stderr
+++ b/src/test/ui/nll/move-errors.stderr
@@ -87,7 +87,7 @@ LL |     match x[0] {
    |           |
    |           cannot move out of here
    |           help: consider borrowing here: `&x[0]`
-LL |     //~^ ERROR
+LL |
 LL |         B::U(d) => (),
    |              - data moved here
 LL |         B::V(s) => (),
@@ -151,7 +151,7 @@ error[E0509]: cannot move out of type `F`, which implements the `Drop` trait
    |
 LL |     match x {
    |           ^ cannot move out of here
-LL |     //~^ ERROR
+LL |
 LL |         F(s, mut t) => (),
    |           -  ----- ...and here
    |           |
@@ -171,7 +171,7 @@ LL |     match *x {
    |           |
    |           cannot move out of borrowed content
    |           help: consider removing the `*`: `x`
-LL |     //~^ ERROR
+LL |
 LL |         Ok(s) | Err(s) => (),
    |            - data moved here
    |