mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
70 lines
1.9 KiB
Plaintext
70 lines
1.9 KiB
Plaintext
error[E0609]: no field `longname` on type `Arc<S>`
|
|
--> $DIR/suggest-field-through-deref.rs:10:15
|
|
|
|
|
LL | let _ = x.longname;
|
|
| ^^^^^^^^ unknown field
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = x.long_name;
|
|
| ~~~~~~~~~
|
|
|
|
error[E0609]: no field `longname` on type `S`
|
|
--> $DIR/suggest-field-through-deref.rs:12:15
|
|
|
|
|
LL | let _ = y.longname;
|
|
| ^^^^^^^^ unknown field
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = y.long_name;
|
|
| ~~~~~~~~~
|
|
|
|
error[E0609]: no field `longname` on type `Option<Arc<S>>`
|
|
--> $DIR/suggest-field-through-deref.rs:14:15
|
|
|
|
|
LL | let _ = a.longname;
|
|
| ^^^^^^^^ unknown field
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = a.unwrap().long_name;
|
|
| ~~~~~~~~~~~~~~~~~~
|
|
|
|
error[E0609]: no field `long_name` on type `Option<S>`
|
|
--> $DIR/suggest-field-through-deref.rs:16:15
|
|
|
|
|
LL | let _ = b.long_name;
|
|
| ^^^^^^^^^ unknown field
|
|
|
|
|
help: one of the expressions' fields has a field of the same name
|
|
|
|
|
LL | let _ = b.unwrap().long_name;
|
|
| +++++++++
|
|
|
|
error[E0609]: no field `longname` on type `Result<Arc<S>, ()>`
|
|
--> $DIR/suggest-field-through-deref.rs:18:15
|
|
|
|
|
LL | let _ = c.longname;
|
|
| ^^^^^^^^ unknown field
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = c.unwrap().long_name;
|
|
| ~~~~~~~~~~~~~~~~~~
|
|
|
|
error[E0609]: no field `long_name` on type `Result<S, ()>`
|
|
--> $DIR/suggest-field-through-deref.rs:20:15
|
|
|
|
|
LL | let _ = d.long_name;
|
|
| ^^^^^^^^^ unknown field
|
|
|
|
|
help: one of the expressions' fields has a field of the same name
|
|
|
|
|
LL | let _ = d.unwrap().long_name;
|
|
| +++++++++
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0609`.
|