summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/as-ref-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/as-ref-2.stderr')
-rw-r--r--src/test/ui/suggestions/as-ref-2.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/suggestions/as-ref-2.stderr b/src/test/ui/suggestions/as-ref-2.stderr
deleted file mode 100644
index e15e45d86..000000000
--- a/src/test/ui/suggestions/as-ref-2.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0382]: use of moved value: `foo`
- --> $DIR/as-ref-2.rs:10:14
- |
-LL | let foo = Some(Struct);
- | --- move occurs because `foo` has type `Option<Struct>`, which does not implement the `Copy` trait
-LL | let _x: Option<Struct> = foo.map(|s| bar(&s));
- | --- ---------------- `foo` moved due to this method call
- | |
- | help: consider calling `.as_ref()` or `.as_mut()` to borrow the type's contents
-LL | let _y = foo;
- | ^^^ value used here after move
- |
-note: this function takes ownership of the receiver `self`, which moves `foo`
- --> $SRC_DIR/core/src/option.rs:LL:COL
- |
-LL | pub const fn map<U, F>(self, f: F) -> Option<U>
- | ^^^^
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0382`.