mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
49 lines
1.6 KiB
Plaintext
49 lines
1.6 KiB
Plaintext
error: `self` parameter is only allowed in associated functions
|
|
--> $DIR/issue-102989.rs:7:15
|
|
|
|
|
LL | fn ref_Struct(self: &Struct, f: &u32) -> &u32 {
|
|
| ^^^^ not semantically valid as function parameter
|
|
|
|
|
= note: associated functions are those in `impl` or `trait` definitions
|
|
|
|
error[E0412]: cannot find type `Struct` in this scope
|
|
--> $DIR/issue-102989.rs:7:22
|
|
|
|
|
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
|
|
|
|
|
LL | let x = x << 1;
|
|
| ^ help: a local variable with a similar name exists: `f`
|
|
|
|
error[E0152]: found duplicate lang item `sized`
|
|
--> $DIR/issue-102989.rs:5:1
|
|
|
|
|
LL | trait Sized { }
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: the lang item is first defined in crate `core` (which `std` depends on)
|
|
= note: first definition in `core` loaded from SYSROOT/libcore-*.rlib
|
|
= note: second definition in the local crate (`issue_102989`)
|
|
|
|
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
|
|
|
|
|
help: consider returning the local binding `f`
|
|
|
|
|
LL ~ let x = x << 1;
|
|
LL + f
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
Some errors have detailed explanations: E0152, E0308, E0412, E0425.
|
|
For more information about an error, try `rustc --explain E0152`.
|