summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/wrap-suggestion-privacy.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/wrap-suggestion-privacy.stderr')
-rw-r--r--src/test/ui/mismatched_types/wrap-suggestion-privacy.stderr59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/test/ui/mismatched_types/wrap-suggestion-privacy.stderr b/src/test/ui/mismatched_types/wrap-suggestion-privacy.stderr
deleted file mode 100644
index e8eb8d263..000000000
--- a/src/test/ui/mismatched_types/wrap-suggestion-privacy.stderr
+++ /dev/null
@@ -1,59 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/wrap-suggestion-privacy.rs:12:19
- |
-LL | needs_wrapper(0);
- | ------------- ^ expected struct `Wrapper`, found integer
- | |
- | arguments to this function are incorrect
- |
- = note: expected struct `Wrapper<i32>`
- found type `{integer}`
-note: function defined here
- --> $DIR/wrap-suggestion-privacy.rs:5:4
- |
-LL | fn needs_wrapper(t: inner::Wrapper<i32>) {}
- | ^^^^^^^^^^^^^ ----------------------
-help: try wrapping the expression in `inner::Wrapper` (its field is private, but it's local to this crate and its privacy can be changed)
- |
-LL | needs_wrapper(inner::Wrapper(0));
- | +++++++++++++++ +
-
-error[E0308]: mismatched types
- --> $DIR/wrap-suggestion-privacy.rs:17:20
- |
-LL | needs_wrapping(0);
- | -------------- ^ expected struct `Wrapping`, found integer
- | |
- | arguments to this function are incorrect
- |
- = note: expected struct `Wrapping<i32>`
- found type `{integer}`
-note: function defined here
- --> $DIR/wrap-suggestion-privacy.rs:6:4
- |
-LL | fn needs_wrapping(t: std::num::Wrapping<i32>) {}
- | ^^^^^^^^^^^^^^ --------------------------
-help: try wrapping the expression in `std::num::Wrapping`
- |
-LL | needs_wrapping(std::num::Wrapping(0));
- | +++++++++++++++++++ +
-
-error[E0308]: mismatched types
- --> $DIR/wrap-suggestion-privacy.rs:22:17
- |
-LL | needs_ready(Some(0));
- | ----------- ^^^^^^^ expected struct `std::future::Ready`, found enum `Option`
- | |
- | arguments to this function are incorrect
- |
- = note: expected struct `std::future::Ready<i32>`
- found enum `Option<{integer}>`
-note: function defined here
- --> $DIR/wrap-suggestion-privacy.rs:7:4
- |
-LL | fn needs_ready(t: std::future::Ready<i32>) {}
- | ^^^^^^^^^^^ --------------------------
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0308`.