summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/as-ref.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/suggestions/as-ref.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/suggestions/as-ref.stderr')
-rw-r--r--src/test/ui/suggestions/as-ref.stderr162
1 files changed, 0 insertions, 162 deletions
diff --git a/src/test/ui/suggestions/as-ref.stderr b/src/test/ui/suggestions/as-ref.stderr
deleted file mode 100644
index deafa9f48..000000000
--- a/src/test/ui/suggestions/as-ref.stderr
+++ /dev/null
@@ -1,162 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:7:29
- |
-LL | opt.map(|arg| takes_ref(arg));
- | --- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().map`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:8:39
- |
-LL | opt.and_then(|arg| Some(takes_ref(arg)));
- | -------- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().and_then`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:10:29
- |
-LL | opt.map(|arg| takes_ref(arg));
- | --- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().map`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:11:37
- |
-LL | opt.and_then(|arg| Ok(takes_ref(arg)));
- | -------- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().and_then`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:13:29
- |
-LL | let y: Option<&usize> = x;
- | -------------- ^
- | | |
- | | expected enum `Option`, found `&Option<usize>`
- | | help: you can convert from `&Option<T>` to `Option<&T>` using `.as_ref()`: `x.as_ref()`
- | expected due to this
- |
- = note: expected enum `Option<&usize>`
- found reference `&Option<usize>`
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:15:37
- |
-LL | let y: Result<&usize, &usize> = x;
- | ---------------------- ^ expected enum `Result`, found reference
- | |
- | expected due to this
- |
- = note: expected enum `Result<&usize, &usize>`
- found reference `&Result<usize, usize>`
-help: you can convert from `&Result<T, E>` to `Result<&T, &E>` using `.as_ref()`
- |
-LL | let y: Result<&usize, &usize> = x.as_ref();
- | ~~~~~~~~~~
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:19:36
- |
-LL | let y: Result<&usize, usize> = x;
- | --------------------- ^ expected enum `Result`, found reference
- | |
- | expected due to this
- |
- = note: expected enum `Result<&usize, usize>`
- found reference `&Result<usize, usize>`
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:22:42
- |
-LL | multiple_ref_opt.map(|arg| takes_ref(arg));
- | --- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().map`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:23:52
- |
-LL | multiple_ref_opt.and_then(|arg| Some(takes_ref(arg)));
- | -------- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().and_then`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:25:45
- |
-LL | multiple_ref_result.map(|arg| takes_ref(arg));
- | --- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().map`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/as-ref.rs:26:53
- |
-LL | multiple_ref_result.and_then(|arg| Ok(takes_ref(arg)));
- | -------- --------- ^^^ expected `&Foo`, found struct `Foo`
- | | |
- | | arguments to this function are incorrect
- | help: consider using `as_ref` instead: `as_ref().and_then`
- |
-note: function defined here
- --> $DIR/as-ref.rs:3:4
- |
-LL | fn takes_ref(_: &Foo) {}
- | ^^^^^^^^^ -------
-
-error: aborting due to 11 previous errors
-
-For more information about this error, try `rustc --explain E0308`.