summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/issue-102989.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/issue-102989.stderr')
-rw-r--r--src/test/ui/traits/issue-102989.stderr31
1 files changed, 3 insertions, 28 deletions
diff --git a/src/test/ui/traits/issue-102989.stderr b/src/test/ui/traits/issue-102989.stderr
index efe1a2467..7d0098fe8 100644
--- a/src/test/ui/traits/issue-102989.stderr
+++ b/src/test/ui/traits/issue-102989.stderr
@@ -13,7 +13,7 @@ LL | fn ref_Struct(self: &Struct, f: &u32) -> &u32 {
| ^^^^^^ not found in this scope
error[E0425]: cannot find value `x` in this scope
- --> $DIR/issue-102989.rs:11:13
+ --> $DIR/issue-102989.rs:10:13
|
LL | let x = x << 1;
| ^ help: a local variable with a similar name exists: `f`
@@ -28,32 +28,7 @@ LL | trait Sized { }
= note: first definition in `core` loaded from SYSROOT/libcore-*.rlib
= note: second definition in the local crate (`issue_102989`)
-error[E0277]: the size for values of type `{integer}` cannot be known at compilation time
- --> $DIR/issue-102989.rs:11:15
- |
-LL | let x = x << 1;
- | ^^ doesn't have a size known at compile-time
- |
- = help: the trait `std::marker::Sized` is not implemented for `{integer}`
-
-error[E0308]: mismatched types
- --> $DIR/issue-102989.rs:7:42
- |
-LL | fn ref_Struct(self: &Struct, f: &u32) -> &u32 {
- | ---------- ^^^^ expected `&u32`, found `()`
- | |
- | implicitly returns `()` as its body has no tail or `return` expression
- |
-note: consider returning one of these bindings
- --> $DIR/issue-102989.rs:7:30
- |
-LL | fn ref_Struct(self: &Struct, f: &u32) -> &u32 {
- | ^
-...
-LL | let x = x << 1;
- | ^
-
-error: aborting due to 6 previous errors
+error: aborting due to 4 previous errors
-Some errors have detailed explanations: E0152, E0277, E0308, E0412, E0425.
+Some errors have detailed explanations: E0152, E0412, E0425.
For more information about an error, try `rustc --explain E0152`.